[FREE] Search Engine Extension - Test extension

Documentation
This is a simple extension to search a word in Search Engine.

Details
Name: Google Search
Version: 1.1
Package Name: com.appybuilder.rutheniumalpha.SearchEngine.aix
Date Build: 2021-02-03T11:36:00Z
Last Updated: 2021-02-04T05:33:00Z

Blocks
image

Download (Version 1.0)
Direct Download : com.appybuilder.rutheniumalpha.GoogleSearch.aix (5.8 KB)
Un-direct Download : Google Drive

Source Code
Download : SearchEngine.txt (1.6 KB)

Thanks to my best friend and teacher @Salman_Dev :kissing_heart:

Updates

Update 1.1
  • Changed the name to Search Engine.
  • Added Bing, Yahoo, and Yandex Search.
  • Removed the GotSearch evnt block and made all blocks to return type.

AIX Download : com.appybuilder.rutheniumalpha.SearchEngine.aix (5.8 KB)

8 Likes

Wow, Nice Extension @Alpha2020 :grin:

I think this extension will be great if you add others blocks like for bing, yandex, cc search, swisscows, duckduckgo, etc. :star_struck: :+1:

2 Likes

I looked at your source code...

@SimpleEvent(description = "When the URL is recived.")
public void GotSearch(String url, String searchWord) {
  EventDispatcher.dispatchEvent(this, "GotSearch", url, searchWord);
}
  
@SimpleFunction(description = "")
public void SearchGoogle(String search) {
  String URL = "";
  URL = "https://google.com/search?q=" + search;
  GotSearch(URL, search);
}

and here is my feedback:
good that you mentioned, that it is only a Test extension... because there is not really much inside...
and you even could have simplified it and return your url directly like this

public String SearchGoogle(String search) {
  return "https://google.com/search?q=" + search;
}

it is the same like this procedure

Unbenannt

the name of the extension is misleading because it does not really return a Google search result, it only returns an URL and then you have to use the web component to do the actual search...

Taifun


Trying to push the limits! Snippets, Tutorials and Extensions from Pura Vida Apps by icon24 Taifun.

6 Likes

Wow @Alpha2020. Nice extension Ruthenium. Although, you could use the same procedure in AI2 to search. Make it so that it can search multiple search engines, and maybe get the resulting items from the search. IDK, just a thought.

-NetMinderNo.9Apps

1 Like

Yes I will update soon.....

1 Like

That is what @Salman_Dev told... :grin: :wink:

2 Likes

I will make the extension to return a String.

1 Like

New Update. Look first Post.

Version 1.1

2 Likes

There's a similar extension already my friend. See here. Although nice extension!

2 Likes

Haha, I said know its a test extension with source code.

2 Likes

I really like the latest updates, thank you @Alpha2020 :kissing_heart:

1 Like

Thank you :smiling_face_with_three_hearts:

1 Like

Thank you very much :smiling_face_with_three_hearts: :smile:

1 Like