Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Making a browser toolbar?

Tags:

toolbar

I would like to make a browser toolbar like google toolbar for my website. It should be compatible with all popular browsers.

Which language should I use to make it? Is there any examples/guides I could use?

like image 881
yaar zeigerman Avatar asked Aug 05 '09 19:08

yaar zeigerman


People also ask

How do I customize my browser toolbar?

Modify the ToolbarOpen the Application Menu with the three lines on the top right. Select More Tools and pick Customize Toolbar. Drag an item from the bottom to the top toolbar in the spot you want it. For any buttons already in the toolbar that you don't want, just drag them to the bottom.

How do I add a toolbar to my browser?

Click on "Tools." This button should be located at the top of the window. Click "Manage Add-ons." This should open a menu that will let you choose which toolbars and Add-ons you want to enable. Enable a toolbar. Select a toolbar you want to enable then click the "Enable" button at the lower-right corner of the window.

Do browser toolbars still exist?

All major web browsers provide support to browser toolbar development as a way to extend the browser's GUI and functionality. Browser toolbars are considered to be a particular kind of browser extensions that present a toolbar.


2 Answers

For Firefox, start here: https://developer.mozilla.org/en/Extensions

Internet Explorer, here: http://msdn.microsoft.com/en-us/library/bb250489%28VS.85%29.aspx

You can use Javascript and Xml (XUL) to write Firefox extensions and any language that can generate a COM component implementing the IObjectWithSite interface (VB, C++, C#...) for IE.

IE Examples:

  • https://web.archive.org/web/1/http://articles.techrepublic%2ecom%2ecom/5100-22_11-5078098.html (VB)
  • http://www.codeproject.com/kb/cs/attach_bho_with_c_.aspx (C#)

Firefox:

  • http://www.rietta.com/firefox/Tutorial/overview.html
  • http://kb.mozillazine.org/Getting_started_with_extension_development
like image 198
Corbin March Avatar answered Sep 23 '22 17:09

Corbin March


You CANT make a single toolbar that is compatible with both IE and Firefox. You need to create two toolbars.

For IE you need to create a Deskband (http://www.codeproject.com/KB/shell/ietoolbartutorial.aspx), a kind of plugin that interfaces with IE via COM. You need to know C++ and COM to do this.

For Firefox, you need to create a Firefox Extension. https://developer.mozilla.org/en/Extensions is a good place to start. You need to know JavaScript and XUL (XML User Interface Language, what Mozilla uses to create user interfaces)

like image 25
Rodrigo Strauss Avatar answered Sep 24 '22 17:09

Rodrigo Strauss