osu! Beatmap Auto Downloader

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

Co to jest osu! Beatmap Auto Downloader?

osu! Beatmap Auto Downloader to rozszerzenie Chrome opracowane przez Brayden9707, a jego główną funkcją jest „This extension will automatically download any beatmap from its page at osu.ppy.sh. For example; If you visit…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia osu! Beatmap Auto Downloader

Pobierz pliki rozszerzeń osu! Beatmap Auto Downloader 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa osu! Beatmap Auto Downloader osu! Beatmap Auto Downloader
ID flompapkhbacnpmgokmghphpohejaohn
Oficjalny URL https://chromewebstore.google.com/detail/osu-beatmap-auto-download/flompapkhbacnpmgokmghphpohejaohn
Opis This extension will automatically download any beatmap from its page at osu.ppy.sh. For example; If you visit…
Rozmiar pliku 14.35 KB
Liczba instalacji 1,212
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2017-11-01
Data Publikacji 2017-11-01
Ocena 3.00/5 Łącznie 4 Oceny
Deweloper Brayden9707
Typ Płatności free
Obsługiwane Języki 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"
    }
}