CyberLeech Extension

CyberLeech Extension

Copy Links and Transload to CyberLeech

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CyberLeech Extension",
  "manifest_version": 2,
  "description": "Copy Links and Transload to CyberLeech",
  "version": "1.0.2",
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "activeTab"
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "logo48.png",
    "default_popup": "popup.html",
    "default_title": "CyberLeech Extension"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}