Copy Guard

Copy Guard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "permissions": [
    "notifications",
    "storage"
  ],
  "background": {
    "service_worker": "src/background/index.js"
  },
  "options_ui": {
    "page": "src/options/index.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "src/contentScript/index.js"
      ]
    }
  ],
  "minimum_chrome_version": "88",
  "icons": {
    "16": "assets/icon16.png",
    "32": "assets/icon32.png",
    "48": "assets/icon48.png",
    "96": "assets/icon96.png",
    "128": "assets/icon128.png"
  },
  "name": "Copy Guard",
  "version": "2.0.0",
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}