SideQuest BSaber Extension
An extension that allows you to download beatsaber maps to SideQuest
What is SideQuest BSaber Extension?
SideQuest BSaber Extension is a Chrome extension developed by ATechAdventurer, and its main feature is "An extension that allows you to download beatsaber maps to SideQuest".
Extension Screenshots
Download SideQuest BSaber Extension Extension CRX File
Download SideQuest BSaber Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
The Official SideQuest Chrome extension allows you to download beatsaber maps from bsaber.com and automatically install them into SideQuest
Extension Basic Information
Name | SideQuest BSaber Extension |
ID | fmifajifkgfamekjpeanjmjjiimfhbjl |
Official URL | https://chromewebstore.google.com/detail/sidequest-bsaber-extensio/fmifajifkgfamekjpeanjmjjiimfhbjl |
Description | An extension that allows you to download beatsaber maps to SideQuest |
File Size | 26.41 KB |
Installation Count | 398 |
Current Version | 0.1.1 |
Last Updated | 2019-06-11 |
Publish Date | 2019-06-11 |
Rating | 1.50/5 Total 2 Ratings |
Developer | ATechAdventurer |
Payment Type | free |
Extension Website | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension |
Help Page URL | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension/issues |
Supported Languages | 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" } } |