ColorTool

ColorTool

这是一款超级简单的拾色器插件!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "ColorTool",
  "version": "1.0.0.201",
  "description": "这是一款超级简单的拾色器插件!",
  "icons": {
    "16": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/logo.png",
    "default_title": "ColorTool"
  },
  "minimum_chrome_version": "88.0",
  "options_page": "popup.html",
  "author": "我是知勤者笔记",
  "version_name": "ColorTool 1.0.0.201",
  "permissions": [
    "contextMenus",
    "scripting",
    "activeTab",
    "storage"
  ],
  "homepage_url": "https://blog.csdn.net/zhiqinzhe?type=blog",
  "background": {
    "service_worker": "javascript/background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "icomoon/style.css",
        "css/embedIndex.css"
      ],
      "js": [
        "javascript/jquery-3.6.4.slim.js",
        "javascript/embedColorTool.js",
        "javascript/embedIndex.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}