TorrentDay Batch Download

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

Vad är TorrentDay Batch Download?

TorrentDay Batch Download är en Chrome-tillägg utvecklad av parkinglotlust, och dess huvudfunktion är "Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files".

Tilläggsskärmbilder

screenshot

Ladda ner TorrentDay Batch Download-förlängningens CRX-fil

Ladda ner TorrentDay Batch Download-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

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

Grundläggande Information om Tillägg

Namn TorrentDay Batch Download TorrentDay Batch Download
ID ieojlpifckmdkapbcijbcfjcfpicndhp
Officiell webbadress https://chromewebstore.google.com/detail/torrentday-batch-download/ieojlpifckmdkapbcijbcfjcfpicndhp
Beskrivning Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files
Filstorlek 11.82 KB
Antal Installationer 269
Aktuell Version 0.0.4
Senast Uppdaterad 2015-09-17
Publiceringsdatum 2015-09-17
Betyg 3.50/5 Totalt 4 Betyg
Utvecklare parkinglotlust
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}