全新万能复制

Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "全新万能复制",
  "icons": {
    "48": "copy-inactive-48.png",
    "128": "copy-inactive-128.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "全新万能复制",
    "default_popup": "popup.html",
    "default_icon": "copy-inactive-32.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "web.html",
        "content.styles.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "version": "0.0.1",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}