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 擴展基本資訊
| 名稱 | |
| ID | fmifajifkgfamekjpeanjmjjiimfhbjl |
| 官方網址 | 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"
}
} | |