Simp Downloader

A downloader that improves several file hosting sites by allowing users to download all files in an album as a .zip archive

Qu'est-ce que Simp Downloader ?

Simp Downloader est une extension Chrome développée par Hugh Mungus, et sa fonction principale est "A downloader that improves several file hosting sites by allowing users to download all files in an album as a .zip archive".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Simp Downloader

Téléchargez les fichiers d'extension Simp Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Makes it quick and easy to download bunkr.ru albums (and more)!

Currently supported:
* bunkr
* cyberdrop.
* ~~gofile~~ (currently unsupported after their update)

Support for more sites is planned!

Please be aware that .zip generation may fail if the total size of the files is above 2 GB. I am trying to find a solution for this issue.                    

Informations de Base sur l'Extension

Nom Simp Downloader Simp Downloader
ID bcpbbfmibcflgkebpnlplaaakdjgkkgb
URL Officiel https://chrome.google.com/webstore/detail/simp-downloader/bcpbbfmibcflgkebpnlplaaakdjgkkgb
Description A downloader that improves several file hosting sites by allowing users to download all files in an album as a .zip archive
Taille du Fichier 97.15 KB
Nombre d'Installations 4,450
Version Actuelle 2.3.0
Dernière Mise à Jour 2023-02-07
Date de Publication 2022-10-16
Évaluation 2.94/5 Total 17 Évaluations
Développeur Hugh Mungus
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simp Downloader",
    "description": "A downloader that improves several file hosting sites by allowing users to download all files in an album as a .zip archive",
    "version": "2.3.0",
    "icons": {
        "16": "logo\/logo-16.png",
        "48": "logo\/logo-48.png",
        "128": "logo\/logo-128.png"
    },
    "permissions": [
        "downloads",
        "declarativeNetRequestWithHostAccess",
        "scripting"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "downloader.html"
            ],
            "use_dynamic_url": true
        }
    ],
    "host_permissions": [
        "*:\/\/*.bunkr.is\/a\/*",
        "*:\/\/*.bunkr.ru\/a\/*",
        "*:\/\/*.bunkr.su\/a\/*",
        "*:\/\/*.cyberdrop.me\/a\/*",
        "*:\/\/*.cyberdrop.to\/a\/*",
        "*:\/\/*.cyberdrop.cc\/a\/*",
        "*:\/\/*.gofile.io\/d\/*"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "js": [
                "interact.min.js",
                "foreground.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "matches": [
                "*:\/\/bunkr.is\/a\/*",
                "*:\/\/bunkr.ru\/a\/*",
                "*:\/\/bunkr.su\/a\/*",
                "*:\/\/*.cyberdrop.me\/a\/*",
                "*:\/\/*.cyberdrop.to\/a\/*",
                "*:\/\/*.cyberdrop.cc\/a\/*",
                "*:\/\/*.gofile.io\/d\/*"
            ]
        }
    ]
}