web checker extensions

web checker extensions

web checker extensions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "web checker extensions",
  "version": "0.0.1",
  "manifest_version": 3,
  "description": "web checker extensions",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "tabs",
    "notifications",
    "webRequest",
    "alarms"
  ],
  "omnibox": {
    "keyword": "Yami"
  },
  "action": {
    "default_popup": "popups/main/main.html",
    "default_icon": {
      "16": "icons/webchecker16x16.png",
      "32": "icons/webchecker32x32.png",
      "48": "icons/webchecker48x48.png",
      "128": "icons/webchecker128x128.png"
    },
    "default_title": "Web Checker的鼠标悬停提示"
  },
  "icons": {
    "16": "icons/webchecker16x16.png",
    "32": "icons/webchecker32x32.png",
    "48": "icons/webchecker48x48.png",
    "128": "icons/webchecker128x128.png"
  },
  "options_page": "popups/options/options.html",
  "devtools_page": "popups/devtools/devtools.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/highlight.css",
        "css/content-toolbar.css"
      ],
      "js": [
        "js/libs/jquery.min.js",
        "js/libs/utils.js",
        "js/content-scripts/highlight.js",
        "js/content-scripts/toolbar.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/loading.gif"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}