Mailbox detective

Mailbox detective

Email Detective is a tool that helps users automatically detect whether the email in the current web page is blacklist

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "default_locale": "zh_CN",
  "version": "2.0.1",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "/assets/img/icon.png",
    "48": "/assets/img/icon.png",
    "128": "/assets/img/icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "/assets/img/icon.png",
    "default_title": "__MSG_extName__",
    "default_popup": "/popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/assets/emails/css/index.css"
      ],
      "js": [
        "/assets/emails/js/jquery1.12.4.min.js",
        "/laiyaui/laiyaui.js",
        "/assets/emails/js/index.js",
        "/assets/js/clipboard.min.js",
        "/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/assets/*",
        "/laiyaui/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}