i have chrome extension button in toolbar , i'd tu put in url bar next bookmarks one.
here it's manifest:
{ "name": "__msg_appname__", "version": "1.0.3", "manifest_version": 2, "description": "__msg_appdesc__", "default_locale": "en", "icons": { "128": "icon_128.png" }, "browser_action": { "default_icon": "icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "activetab", "contextmenus" ] }
you need use page action, not browser action.
however advised chrome transitioning showing page action extension icons on toolbar well:
http://news.softpedia.com/news/google-chrome-49-moves-all-your-extension-icons-501384.shtml https://chrome.googleblog.com/2016/01/new-year-new-chrome.html
Comments
Post a Comment