Bitport-Links

Bitport-Links

Open torrent links using bitport.io

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bitport-Links",
  "short_name": "Bitport-Links",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "Open torrent links using bitport.io",
  "background": {
    "scripts": [
      "bootstrap.js",
      "context-menu.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.bitport.io/*"
      ],
      "js": [
        "bootstrap.js",
        "bitport.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "bootstrap.js",
        "global.js"
      ],
      "run_at": "document_end"
    }
  ],
  "homepage_url": "https://bitport.io",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "*://*/*",
    "storage",
    "contextMenus",
    "tabs"
  ]
}