Simp Downloader

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

Simp Downloader là gì?

Simp Downloader là một tiện ích mở rộng Chrome được phát triển bởi Hugh Mungus, và tính năng chính của nó là "A downloader that improves several file hosting sites by allowing users to download all files in an album as a .zip archive".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simp Downloader

Tải xuống các tệp mở rộng Simp Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Simp Downloader Simp Downloader
ID bcpbbfmibcflgkebpnlplaaakdjgkkgb
URL Chính Thức https://chrome.google.com/webstore/detail/simp-downloader/bcpbbfmibcflgkebpnlplaaakdjgkkgb
Mô tả A downloader that improves several file hosting sites by allowing users to download all files in an album as a .zip archive
Kích Thước Tệp 97.15 KB
Số Lần Cài Đặt 4,450
Phiên Bản Hiện Tại 2.3.0
Cập Nhật Lần Cuối 2023-02-07
Ngày Phát Hành 2022-10-16
Đánh Giá 2.94/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Hugh Mungus
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}