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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Communicates with Transmission torrent client. Supports adding torrents (incl. magnet links) & quickly looking at torrent status."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Transmitter for Transmission एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
        ]
    }
}