SideQuest BSaber Extension
An extension that allows you to download beatsaber maps to SideQuest
Cos'è SideQuest BSaber Extension?
SideQuest BSaber Extension è un'estensione di Chrome sviluppata da ATechAdventurer, e la sua funzione principale è "An extension that allows you to download beatsaber maps to SideQuest".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SideQuest BSaber Extension
Scarica i file di estensione SideQuest BSaber Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
The Official SideQuest Chrome extension allows you to download beatsaber maps from bsaber.com and automatically install them into SideQuest
Informazioni di Base sull'Estensione
Nome | SideQuest BSaber Extension |
ID | fmifajifkgfamekjpeanjmjjiimfhbjl |
URL Ufficiale | https://chromewebstore.google.com/detail/sidequest-bsaber-extensio/fmifajifkgfamekjpeanjmjjiimfhbjl |
Descrizione | An extension that allows you to download beatsaber maps to SideQuest |
Dimensione del File | 26.41 KB |
Conteggio Installazioni | 398 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2019-06-11 |
Data di Pubblicazione | 2019-06-11 |
Valutazione | 1.50/5 Totale 2 Valutazioni |
Sviluppatore | ATechAdventurer |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension |
URL della Pagina di Aiuto | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension/issues |
Lingue Supportate | 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" } } |