Tidy Sidebar

Tidy Sidebar

Tidy Sidebar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tidy Sidebar",
  "version": "5.2",
  "description": "Tidy Sidebar",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "omnibox": {
    "keyword": "*"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon19.png",
    "default_title": "Tidy Sidebar"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "icon19on.png",
    "icon19off.png"
  ],
  "commands": {
    "myCommandADDBOOKMARK": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "Send add Bookmark command"
    }
  },
  "minimum_chrome_version": "19",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "bookmarks",
    "history",
    "tabs",
    "contextMenus",
    "chrome://favicon/*",
    "sessions",
    "http://*/*",
    "https://*/*",
    "webRequest",
    "webRequestBlocking"
  ]
}