QbitTorrent Client

QbitTorrent Client

A Browser Extension for managing your torrent servers and be notified of changes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "QbitTorrent Client",
  "homepage_url": "https://www.qbittorrent.org/",
  "description": "A Browser Extension for managing your torrent servers and be notified of changes.",
  "default_locale": "en",
  "permissions": [
    "storage",
    "*://*/*",
    "notifications",
    "contextMenus"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "options_ui": {
    "page": "index.html#/options",
    "chrome_style": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "version": "0.0.8",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}