Control for Transmission

A concise, lightweight and high-performance Transmission Manager and Web Extension.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.0.3",
  "author": "Guokai Han",
  "manifest_version": 3,
  "default_locale": "en",
  "minimum_chrome_version": "102",
  "permissions": [
    "storage",
    "contextMenus",
    "notifications"
  ],
  "optional_host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "icons": {
    "128": "icon/icon.png"
  },
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_title": "__MSG_extActionTitle__",
    "default_popup": "webui.html"
  },
  "options_page": "options.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}