Add Torrent To

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

Vad är Add Torrent To?

Add Torrent To är en Chrome-tillägg utvecklad av gchristnsn, och dess huvudfunktion är "Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.".

Tilläggsskärmbilder

screenshot

Ladda ner Add Torrent To-förlängningens CRX-fil

Ladda ner Add Torrent To-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Add Torrent To Add Torrent To
ID jlbkggamnpibjmibgcohffcncainphbj
Officiell webbadress https://chromewebstore.google.com/detail/add-torrent-to/jlbkggamnpibjmibgcohffcncainphbj
Beskrivning Instantly add torrents to a customizable set of directories in uTorrent or qBittorrent.
Filstorlek 237 KB
Antal Installationer 2,342
Aktuell Version 0.4.4
Senast Uppdaterad 2023-12-05
Publiceringsdatum 2022-08-12
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare gchristnsn
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://gchristensen.github.io/torrent-add/
Hjälpsida URL https://github.com/GChristensen/torrent-add/issues
URL till Sekretesspolicy Sidan https://gchristensen.github.io/docs/chrome-privacy-policy.html
Stödda Språk 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'"
    }
}