TorrentDay Batch Download

Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files

Was ist TorrentDay Batch Download?

TorrentDay Batch Download ist eine Chrome-Erweiterung, die von parkinglotlust entwickelt wurde, und ihr Hauptmerkmal ist "Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files".

Erweiterungsscreenshots

screenshot

TorrentDay Batch Download-Erweiterungs-CRX-Datei herunterladen

Laden Sie TorrentDay Batch Download-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

                        Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files                    

Grundlegende Informationen zur Erweiterung

Name TorrentDay Batch Download TorrentDay Batch Download
ID ieojlpifckmdkapbcijbcfjcfpicndhp
Offizielle URL https://chromewebstore.google.com/detail/torrentday-batch-download/ieojlpifckmdkapbcijbcfjcfpicndhp
Beschreibung Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files
Dateigröße 11.82 KB
Installationsanzahl 269
Aktuelle Version 0.0.4
Letztes Update 2015-09-17
Veröffentlichungsdatum 2015-09-17
Bewertung 3.50/5 Insgesamt 4 Bewertungen
Entwickler parkinglotlust
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TorrentDay Batch Download",
    "version": "0.0.4",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "TorrentDay Batch Download",
        "default_popup": "about.html"
    },
    "permissions": [
        "storage",
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.torrentday.com\/*",
                "https:\/\/www.torrentday.com\/*",
                "http:\/\/torrentday\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}