Bookmark Icon

Bookmark Icon

Adds a bookmarks icon to the toolbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "eventpage.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_title": "__MSG_icon_label__",
    "default_popup": "popup.html?popup"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+B"
      }
    }
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "devtools_page": "devtools.html",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "*://*/*",
    "chrome://favicon/",
    "contextMenus",
    "bookmarks"
  ],
  "version": "1.7"
}