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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย unrelenting.technology และคุณลักษณะหลักของมันคือ "Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Transmitter for Transmission

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
อีเมล greg@unrelenting.technology
ประเภทการชำระเงิน 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"
        ]
    }
}