ScoreSaber Easy Installer
Adds a super easy way to download songs straight from ScoreSaber.
O que é ScoreSaber Easy Installer?
ScoreSaber Easy Installer é uma extensão do Chrome desenvolvida por https://cobular.com, e sua principal característica é "Adds a super easy way to download songs straight from ScoreSaber.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ScoreSaber Easy Installer
Baixe arquivos de extensão ScoreSaber Easy Installer 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
Gone are the days of finding a cool song on ScoreSaber, but then having to go to SaberSaver and spend a few minutes searching for the right song by the right mapper. This small extension adds a one-click download button to ScoreSaber, making it that much more convient to install your favorite BeatSaber maps! If you find any bugs, please create a GitHub issue at https://github.com/Cobular/ScoreSaverExtention/issues and I'll do my best to fix it quickly. (Sorry, this is the SEO bit, gotta help the Google Bot figure out what this is :P ) Beat Saber, BeatSaber, VR, ScoreSaber, SaberSaver, BeastSaver
Informações Básicas da Extensão
Nome | ScoreSaber Easy Installer |
ID | gpghflbiabfangjnelpihcokfmanppgi |
URL Oficial | https://chromewebstore.google.com/detail/scoresaber-easy-installer/gpghflbiabfangjnelpihcokfmanppgi |
Descrição | Adds a super easy way to download songs straight from ScoreSaber. |
Tamanho do Arquivo | 25.56 KB |
Contagem de Instalações | 638 |
Versão Atual | 2.2 |
Última Atualização | 2022-08-08 |
Data de Publicação | 2020-04-11 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | https://cobular.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Cobular/ScoreSaverExtention |
URL da Página de Ajuda | https://github.com/Cobular/ScoreSaverExtention/issues |
URL da Página de Política de Privacidade | https://cobular.notion.site/Privacy-Policy-277b8e3e484e445193f01fb142529a69 |
Idiomas Suportados | en,cs,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_title__", "version": "2.2", "description": "__MSG_description__", "manifest_version": 2, "permissions": [ "*:\/\/*.scoresaber.com\/leaderboard\/*", "*:\/\/api.beatsaver.com\/*" ], "icons": { "16": ".\/icons\/icon_16.png", "32": ".\/icons\/icon_32.png", "64": ".\/icons\/icon_64.png", "128": ".\/icons\/icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.scoresaber.com\/*" ], "js": [ "main.js" ], "run_at": "document_end" } ], "default_locale": "en", "web_accessible_resources": [ "download-icon.svg" ] } |