Add Torrent To

Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.

Was ist Add Torrent To?

Add Torrent To ist eine Chrome-Erweiterung, die von gchristnsn entwickelt wurde, und ihr Hauptmerkmal ist "Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.".

Erweiterungsscreenshots

screenshot

Add Torrent To-Erweiterungs-CRX-Datei herunterladen

Laden Sie Add Torrent To-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Add Torrent To is a minimalist browser extension that allows to instantly begin a download of the torrent content into a configurable set of directories available from the browser context menu. It is useful for preventing clutter in the download directory.                    

Grundlegende Informationen zur Erweiterung

Name Add Torrent To Add Torrent To
ID jlbkggamnpibjmibgcohffcncainphbj
Offizielle URL https://chromewebstore.google.com/detail/add-torrent-to/jlbkggamnpibjmibgcohffcncainphbj
Beschreibung Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.
Dateigröße 237 KB
Installationsanzahl 2,342
Aktuelle Version 0.4.4
Letztes Update 2023-12-05
Veröffentlichungsdatum 2022-08-12
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler gchristnsn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gchristensen.github.io/torrent-add/
Hilfeseite URL https://github.com/GChristensen/torrent-add/issues
URL der Datenschutzrichtlinien-Seite https://gchristensen.github.io/docs/chrome-privacy-policy.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Add Torrent To",
    "version": "0.4.4",
    "homepage_url": "https:\/\/gchristensen.github.io\/torrent-add\/",
    "description": "Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.",
    "icons": {
        "16": "ui\/icons\/logo16.png",
        "48": "ui\/icons\/logo48.png",
        "96": "ui\/icons\/logo96.png",
        "128": "ui\/icons\/logo128.png"
    },
    "background": {
        "service_worker": "background_worker.js",
        "type": "module"
    },
    "options_ui": {
        "page": "ui\/options.html",
        "browser_style": true
    },
    "permissions": [
        "storage",
        "contextMenus",
        "notifications",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "net_rules.json"
            }
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}