Tag It

Tag It

Bookmarks on steroids

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tag It",
  "version": "0.0.2",
  "description": "Bookmarks on steroids",
  "author": "[email protected]",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "downloads",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "lib/underscore-min.js",
      "js/store.js",
      "lib/lunr.min.js",
      "js/search.js",
      "js/utils.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "public/icon.png",
    "default_popup": "html/popup.html"
  },
  "commands": {
    "journal": {
      "suggested_key": {
        "default": "Alt+Shift+J"
      },
      "description": "Show the journal in a new tab"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Send a 'save' event to the extension"
    }
  }
}