osu! Beatmap Auto Downloader

This extension will automatically download any beatmap from its page at osu.ppy.sh. For example; If you visit…

osu! Beatmap Auto Downloader là gì?

osu! Beatmap Auto Downloader là một tiện ích mở rộng Chrome được phát triển bởi Brayden9707, và tính năng chính của nó là "This extension will automatically download any beatmap from its page at osu.ppy.sh. For example; If you visit…".

Ả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 osu! Beatmap Auto Downloader

Tải xuống các tệp mở rộng osu! Beatmap Auto 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

                        This extension will automatically download any beatmap from its page at osu.ppy.sh.

For example; 
If you visit https://osu.ppy.sh/s/163112 with osu! Beatmap Auto Downloader enabled, it will automatically redirect you to the /d/ page of that beatmap. This will start the download without any extra clicks! (not that you aren't used to that...)

You can also choose to prefer each download is the "No Video" version.
This means that if the Beatmap has a video, you can setup osu! Beatmap Auto Downloader to download the non-video version.                    

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

Tên osu! Beatmap Auto Downloader osu! Beatmap Auto Downloader
ID flompapkhbacnpmgokmghphpohejaohn
URL Chính Thức https://chromewebstore.google.com/detail/osu-beatmap-auto-download/flompapkhbacnpmgokmghphpohejaohn
Mô tả This extension will automatically download any beatmap from its page at osu.ppy.sh. For example; If you visit…
Kích Thước Tệp 14.35 KB
Số Lần Cài Đặt 1,212
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2017-11-01
Ngày Phát Hành 2017-11-01
Đánh Giá 3.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Brayden9707
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": 2,
    "name": "osu! Beatmap Auto Downloader",
    "version": "0.2",
    "options_page": "options.html",
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/osu.ppy.sh\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    }
}