Auto Clipboard

Auto Clipboard

Select automatic copy of text, crack selection prohibition and copy prohibition, support various libraries and websites, and support viewing the history of clipboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "0.11.0",
  "action": {
    "default_icon": {
      "16": "images/[email protected]",
      "24": "images/[email protected]",
      "32": "images/[email protected]",
      "48": "images/[email protected]",
      "128": "images/[email protected]"
    },
    "default_title": "__MSG_defaultTitle__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/[email protected]",
    "24": "images/[email protected]",
    "32": "images/[email protected]",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content-script.js",
        "initialization.js"
      ],
      "match_about_blank": true,
      "run_at": "document_end"
    }
  ],
  "default_locale": "zh_CN",
  "description": "__MSG_description__",
  "author": "wangmeijian",
  "permissions": [
    "clipboardWrite",
    "storage",
    "contextMenus"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}