取色器(纯净版)

取色器(纯净版)

纯净简约的网页取色器

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.4.2",
  "manifest_version": 2,
  "minimum_chrome_version": "56.0.0",
  "name": "__MSG_name__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_description__",
  "offline_enabled": true,
  "default_locale": "zh_CN",
  "icons": {
    "16": "static/icons/icon16.png",
    "48": "static/icons/icon48.png",
    "128": "static/icons/icon128.png"
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/vendor.bundle.js",
        "./static/js/contentScript.js",
        "./static/js/style.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": {},
    "default_popup": "popup.html",
    "default_title": "__MSG_name__"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "activeTab",
    "contextMenus",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    "static/js/*"
  ],
  "commands": {
    "start-color-picker": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "Start page color-picker"
    }
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}