SideQuest BSaber Extension
An extension that allows you to download beatsaber maps to SideQuest
O que é SideQuest BSaber Extension?
SideQuest BSaber Extension é uma extensão do Chrome desenvolvida por ATechAdventurer, e sua principal característica é "An extension that allows you to download beatsaber maps to SideQuest".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão SideQuest BSaber Extension
Baixe arquivos de extensão SideQuest BSaber Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
The Official SideQuest Chrome extension allows you to download beatsaber maps from bsaber.com and automatically install them into SideQuest
Informações Básicas da Extensão
Nome | SideQuest BSaber Extension |
ID | fmifajifkgfamekjpeanjmjjiimfhbjl |
URL Oficial | https://chromewebstore.google.com/detail/sidequest-bsaber-extensio/fmifajifkgfamekjpeanjmjjiimfhbjl |
Descrição | An extension that allows you to download beatsaber maps to SideQuest |
Tamanho do Arquivo | 26.41 KB |
Contagem de Instalações | 398 |
Versão Atual | 0.1.1 |
Última Atualização | 2019-06-11 |
Data de Publicação | 2019-06-11 |
Classificação | 1.50/5 Total de 2 Avaliações |
Desenvolvedor | ATechAdventurer |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension |
URL da Página de Ajuda | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension/issues |
Idiomas Suportados | 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" } } |