Force Copy

Force Copy

Force Copy Everything

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Force Copy",
  "version": "1.0.6",
  "description": "Force Copy Everything",
  "default_locale": "en",
  "icons": {
    "32": "./static/favicon.128.png",
    "96": "./static/favicon.128.png",
    "128": "./static/favicon.128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "./static/favicon.128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file://*/*"
      ],
      "js": [
        "./content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "eQnCrNJRXq.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "file://*/*"
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ],
  "minimum_chrome_version": "88.0"
}