toolbox

toolbox

Chrome simple toolbox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "toolbox",
  "version": "1.1",
  "description": "Chrome simple toolbox",
  "permissions": [
    "browsingData",
    "tabs",
    "storage",
    "background"
  ],
  "browser_action": {
    "default_popup": "html/list.html"
  },
  "options_page": "html/options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/toolbox-16.png",
    "32": "images/toolbox-32.png",
    "48": "images/toolbox-48.png",
    "64": "images/toolbox-64.png",
    "128": "images/toolbox-128.png"
  },
  "manifest_version": 2
}