SideQuest BSaber Extension

An extension that allows you to download beatsaber maps to SideQuest

Co to jest SideQuest BSaber Extension?

SideQuest BSaber Extension to rozszerzenie Chrome opracowane przez ATechAdventurer, a jego główną funkcją jest „An extension that allows you to download beatsaber maps to SideQuest”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SideQuest BSaber Extension

Pobierz pliki rozszerzeń SideQuest BSaber Extension 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

                        The Official SideQuest Chrome extension allows you to download beatsaber maps from bsaber.com and automatically install them into SideQuest                    

Podstawowe informacje o rozszerzeniu

Nazwa SideQuest BSaber Extension SideQuest BSaber Extension
ID fmifajifkgfamekjpeanjmjjiimfhbjl
Oficjalny URL https://chromewebstore.google.com/detail/sidequest-bsaber-extensio/fmifajifkgfamekjpeanjmjjiimfhbjl
Opis An extension that allows you to download beatsaber maps to SideQuest
Rozmiar pliku 26.41 KB
Liczba instalacji 398
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2019-06-11
Data Publikacji 2019-06-11
Ocena 1.50/5 Łącznie 2 Oceny
Deweloper ATechAdventurer
Typ Płatności free
Strona Rozszerzenia https://github.com/ATechAdventurer/SideQuest-Chrome-Extension
Adres URL Strony Pomocy https://github.com/ATechAdventurer/SideQuest-Chrome-Extension/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SideQuest BSaber Extension",
    "description": "An extension that allows you to download beatsaber maps to SideQuest",
    "version": "0.1.1",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/bsaber.com\/*",
                "https:\/\/bsaber.com\/*",
                "https:\/\/beatsaver.com\/*",
                "http:\/\/beatsaver.com\/*"
            ],
            "css": [
                "styles\/contentscript.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "permissions": [
        "https:\/\/bsaber.com\/*",
        "http:\/\/bsaber.com\/*",
        "https:\/\/beatsaver.com\/*",
        "http:\/\/beatsaver.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "SideQuest BSaber Extension",
        "default_popup": "popup.html"
    }
}