TorrServer Adder

TorrServer Adder

This extension allows you to add torrents from torrent trackers to TorrServer and play them using the system media player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.5",
  "name": "TorrServer Adder",
  "short_name": "TSA",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "author": "Noperkot",
  "homepage_url": "https://github.com/Noperkot/TorrServerAdder",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "css": [
        "tsafont.css",
        "notifier.css"
      ],
      "js": [
        "notifier.js",
        "trackers.js",
        "content_scr.js"
      ]
    }
  ],
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "options/popup.html"
  },
  "background": {
    "service_worker": "background_M3.js"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "contextMenus",
    "downloads",
    "storage",
    "tabs",
    "declarativeNetRequest",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "wa/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "options_page": "options/options.html",
  "minimum_chrome_version": "88"
}