I am new at Chrome extension development. I need to create 2 buttons below addressbar. And obviously buttons have some action (e.g. open new tab). I can do it with Firefox but new at chrome.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Extensions in Chrome have way much strict rules than Firefox’s.
In Chrome there is no toolbar API, and Google has good reasons for no having it yet (I’m not discussing its reasons here).
Chrome has InfoBars, but their API is experimental, not available by default.
Some extensions imitate a toolbar using the DOM. They aren’t browser’s toolbars, they are floating DIVs on top of screen of every page.
In Chrome extensions can have a button (singular, not plural), either a Browser Action button, or a Page Action button. If you need 2 buttons, you need to build two extensions.