Copy Download Links

Copy Download Links

Makes it posible to copy k2s, uploaded and rapidgator links. If all links already exist in clipboard, close the tabs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copy Download Links",
  "version": "2.0.0",
  "description": "Makes it posible to copy k2s, uploaded and rapidgator links. If all links already exist in clipboard, close the tabs",
  "icons": {
    "48": "umbrella_48.png"
  },
  "permissions": [
    "tabs",
    "clipboardWrite",
    "clipboardRead",
    "storage"
  ],
  "action": {
    "default_icon": "umbrella_32.png",
    "default_title": "Copy Download Links"
  },
  "background": {
    "service_worker": "copy-download-links.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html"
}