Bookmarks Tagger

Bookmarks Tagger

Assign tags to your bookmarks and search for them through the address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_icon": "media/icon19.png",
    "default_popup": "popup.html",
    "default_title": "Bookmarks Tagger"
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Assign tags to your bookmarks and search for them through the address bar.",
  "background": {
    "scripts": [
      "global.js",
      "background.js"
    ]
  },
  "name": "Bookmarks Tagger",
  "options_page": "options.html",
  "permissions": [
    "bookmarks",
    "tabs"
  ],
  "omnibox": {
    "keyword": "bt"
  },
  "icons": {
    "16": "media/icon16-on.png",
    "48": "media/icon48.png",
    "96": "media/icon96.png",
    "112": "media/icon112.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "version": "1.1.2"
}