TorrentDay Batch Download

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

Co to jest TorrentDay Batch Download?

TorrentDay Batch Download to rozszerzenie Chrome opracowane przez parkinglotlust, a jego główną funkcją jest „Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia TorrentDay Batch Download

Pobierz pliki rozszerzeń TorrentDay Batch Download w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa TorrentDay Batch Download TorrentDay Batch Download
ID ieojlpifckmdkapbcijbcfjcfpicndhp
Oficjalny URL https://chromewebstore.google.com/detail/torrentday-batch-download/ieojlpifckmdkapbcijbcfjcfpicndhp
Opis Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files
Rozmiar pliku 11.82 KB
Liczba instalacji 269
Aktualna Wersja 0.0.4
Ostatnia Aktualizacja 2015-09-17
Data Publikacji 2015-09-17
Ocena 3.50/5 Łącznie 4 Oceny
Deweloper parkinglotlust
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}