ScoreSaber Easy Installer
Adds a super easy way to download songs straight from ScoreSaber.
Vad är ScoreSaber Easy Installer?
ScoreSaber Easy Installer är en Chrome-tillägg utvecklad av https://cobular.com, och dess huvudfunktion är "Adds a super easy way to download songs straight from ScoreSaber.".
Tilläggsskärmbilder
Ladda ner ScoreSaber Easy Installer-förlängningens CRX-fil
Ladda ner ScoreSaber Easy Installer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | gpghflbiabfangjnelpihcokfmanppgi |
| Officiell webbadress | https://chromewebstore.google.com/detail/scoresaber-easy-installer/gpghflbiabfangjnelpihcokfmanppgi |
| Beskrivning | Adds a super easy way to download songs straight from ScoreSaber. |
| Filstorlek | 25.56 KB |
| Antal Installationer | 638 |
| Aktuell Version | 2.2 |
| Senast Uppdaterad | 2022-08-08 |
| Publiceringsdatum | 2020-04-11 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | https://cobular.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Cobular/ScoreSaverExtention |
| Hjälpsida URL | https://github.com/Cobular/ScoreSaverExtention/issues |
| URL till Sekretesspolicy Sidan | https://cobular.notion.site/Privacy-Policy-277b8e3e484e445193f01fb142529a69 |
| Stödda Språk | 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"
]
} | |