Remote Torrent Adder

Add torrents using several programs' WebUIs

Τι είναι το Remote Torrent Adder;

Το Remote Torrent Adder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον bog, και η κύρια λειτουργία του είναι "Add torrents using several programs' WebUIs".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Remote Torrent Adder

Λήψη αρχείων επέκτασης Remote Torrent Adder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension allows you to send torrent files from your browser to your remote or local Bittorrent client's web interface.

It doesn't just send the urls to the WebUIs, but downloads the torrent and uses the file upload function of the UIs to add the torrent. Thus, it even works on private trackers that require cookies.

Currently, it supports several web interfaces, a full list can be viewed on the project page.

Per default, this extension scans any open page for links that match given filters and overwrites the download-action, but its functionality can also be accessed via a context menu.

Its filters are easily extensible using regular expressions via the options page, but a basic set of filters should work for most sites.


For faq, support (issues) or the latest changes, please visit the GitHub page that is linked in the "DETAILS" tab of this page.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Remote Torrent Adder Remote Torrent Adder
ID oabphaconndgibllomdcjbfdghcmenci
Επίσημο URL https://chromewebstore.google.com/detail/remote-torrent-adder/oabphaconndgibllomdcjbfdghcmenci
Περιγραφή Add torrents using several programs' WebUIs
Μέγεθος Αρχείου 256 KB
Αριθμός Εγκαταστάσεων 43,216
Τρέχουσα Έκδοση 1.3.8
Τελευταία Ενημέρωση 2021-10-16
Ημερομηνία Δημοσίευσης 2019-09-07
Αξιολόγηση 4.02/5 Συνολικά 441 Αξιολογήσεις
Προγραμματιστής bog
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/bogenpirat/remote-torrent-adder
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/bogenpirat/remote-torrent-adder/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/bogenpirat/remote-torrent-adder/wiki/Privacy-Policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remote Torrent Adder",
    "short_name": "RTA",
    "icons": {
        "16": "icons\/BitTorrent16.png",
        "48": "icons\/BitTorrent48.png",
        "128": "icons\/BitTorrent128.png"
    },
    "version": "1.3.8",
    "manifest_version": 2,
    "description": "Add torrents using several programs' WebUIs",
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus",
        "notifications",
        "tabs",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "miscapis\/RTAinit.js",
            "miscapis\/browser.js",
            "miscapis\/safe-buffer.js",
            "miscapis\/bencode.js",
            "miscapis\/functions.js",
            "miscapis\/background.js",
            "miscapis\/config.js",
            "miscapis\/base64.js",
            "webuiapis\/VuzeSwingUI.js",
            "webuiapis\/TorrentfluxWebUI.js",
            "webuiapis\/TransmissionWebUI.js",
            "webuiapis\/uTorrentWebUI.js",
            "webuiapis\/ruTorrentWebUI.js",
            "webuiapis\/VuzeHTMLUI.js",
            "webuiapis\/VuzeRemoteUI.js",
            "webuiapis\/BuffaloWebUI.js",
            "webuiapis\/qBittorrentWebUI.js",
            "webuiapis\/qBittorrentWebUI-v2.js",
            "webuiapis\/QnapDownloadStation.js",
            "webuiapis\/DelugeWebUI.js",
            "webuiapis\/pyrtWebUI.js",
            "webuiapis\/TixatiWebUI.js",
            "webuiapis\/HadoukenWebUI.js",
            "webuiapis\/nodejsrtorrentWebUI.js",
            "webuiapis\/SynologyWebUI.js",
            "webuiapis\/floodWebUI.js",
            "webuiapis\/flood-jesecWebUI.js",
            "webuiapis\/tTorrentWebUI.js",
            "webuiapis\/rtorrentXmlRpc.js"
        ]
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "16": "icons\/BitTorrent16-gray.png",
            "48": "icons\/BitTorrent48-gray.png",
            "128": "icons\/BitTorrent128-gray.png"
        },
        "default_title": "Remote Torrent Adder"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "miscapis\/modal.js",
                "miscapis\/content_rta.js"
            ],
            "css": [
                "modal.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "icons\/White_X_in_red_background.svg",
        "icons\/BitTorrent16.png",
        "icons\/BitTorrent48.png",
        "icons\/BitTorrent128.png",
        "miscapis\/jquery-2.0.3.min.map",
        "fancybox\/*"
    ]
}