Simple Allow Copy

Simple Allow Copy

Allow Copy on every websites

Additional files are visible only to premium users

manifest.json


{
  "background": {
    "persistent": false,
    "scripts": [
      "background/proxy.js",
      "background/config.js",
      "background/index.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/inactive.png"
    },
    "default_title": "Allow Copy"
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts/proxy.js",
        "content_scripts/unlocker.js",
        "content_scripts/index.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Allow Copy on every websites",
  "icons": {
    "16": "icons/active.png",
    "48": "icons/active.png",
    "128": "icons/active.png"
  },
  "manifest_version": 2,
  "name": "Simple Allow Copy",
  "permissions": [
    "storage",
    "tabs"
  ],
  "version": "0.8.3",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}