SideQuest BSaber Extension
An extension that allows you to download beatsaber maps to SideQuest
SideQuest BSaber Extensionとは何ですか?
SideQuest BSaber ExtensionはATechAdventurerによって開発されたChromeの拡張機能で、その主な機能は「An extension that allows you to download beatsaber maps to SideQuest」です。
拡張機能のスクリーンショット
SideQuest BSaber Extension拡張機能のCRXファイルをダウンロード
SideQuest BSaber Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The Official SideQuest Chrome extension allows you to download beatsaber maps from bsaber.com and automatically install them into SideQuest
拡張機能の基本情報
名前 | SideQuest BSaber Extension |
ID | fmifajifkgfamekjpeanjmjjiimfhbjl |
公式URL | https://chromewebstore.google.com/detail/sidequest-bsaber-extensio/fmifajifkgfamekjpeanjmjjiimfhbjl |
説明 | An extension that allows you to download beatsaber maps to SideQuest |
ファイルサイズ | 26.41 KB |
インストール数 | 398 |
現在のバージョン | 0.1.1 |
最終更新日 | 2019-06-11 |
公開日 | 2019-06-11 |
評価 | 1.50/5 合計 2 レビュー |
開発者 | ATechAdventurer |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension |
ヘルプページのURL | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension/issues |
対応言語 | 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" } } |