Transmitter for Transmission

Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status.

什麼是Transmitter for Transmission?

Transmitter for Transmission是由unrelenting.technology開發的Chrome擴展程式,該擴展的主要功能是“Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status.”。

擴展截圖

screenshot
screenshot

下載Transmitter for Transmission擴展crx文件

下載Transmitter for Transmission擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A WebExtension for the Transmission BitTorrent client.

Adds a context menu item for downloading torrents (both magnets and links to .torrent files) on your remote Transmission server.

Adds a browser action (popup toolbar icon thing) that lets you view existing torrents' status.
That button even has a badge (auto-updating torrent count / download speed / upload speed).

Automatically picks up your session from the Transmission web UI, no need for separate authentication.

Works fine if your Transmission instance is behind a reverse proxy that uses TLS client certificates.                    

擴展基本資訊

名稱 Transmitter for Transmission Transmitter for Transmission
ID cdmpmfcgepijfiaaojbahpmpjfkgdgja
官方網址 https://chromewebstore.google.com/detail/transmitter-for-transmiss/cdmpmfcgepijfiaaojbahpmpjfkgdgja
簡介 Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status.
檔案大小 20.37 KB
安裝次數 846
目前版本 1.1.1
更新時間 2017-12-06
上架時間 2017-12-06
評分 3.40/5 共 5 次評分
開發者 unrelenting.technology
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/myfreeweb/transmitter
說明頁面URL https://github.com/myfreeweb/transmitter/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Transmitter for Transmission",
    "author": "unrelenting.technology",
    "version": "1.1.1",
    "description": "Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "alarms",
        "contextMenus",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/transmitter.web-extension\/*",
        ""
    ],
    "optional_permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_ui": {
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Transmitter",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "background": {
        "persistent": true,
        "scripts": [
            "browser-polyfill.min.js",
            "common.js",
            "background.js"
        ]
    }
}