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

Λήψη αρχείου 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
Ηλεκτρονικό ταχυδρομείο [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"
        ]
    }
}