取色器

取色器

取色器 for chengzijianzhan

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "取色器",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": " 取色器 for chengzijianzhan",
  "homepage_url": "https://www.chengzijianzhan.com/",
  "minimum_chrome_version": "49",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "options_page": "html/options.html",
  "icons": {
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.oceanengine.com/*"
      ],
      "js": [
        "event-bus.js"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://*.oceanengine.com/*"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon_19.png",
      "38": "img/icon_38.png"
    },
    "default_title": "取色器",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "<all_urls>",
    "*://*.oceanengine.com/*"
  ],
  "web_accessible_resources": [
    "inc/jquery-2.1.0.min.js",
    "inc/jquery.scrollstop.js",
    "edropper2.js",
    "eventBus.js",
    "inject/anchor-cursor-default.css",
    "inject/anchor-cursor-crosshair.css",
    "inject/edropper2.css"
  ],
  "commands": {
    "activate": {
      "suggested_key": {
        "default": "Alt+P"
      },
      "description": "激活取色"
    }
  }
}