SideQuest BSaber Extension
An extension that allows you to download beatsaber maps to SideQuest
SideQuest BSaber Extension là gì?
SideQuest BSaber Extension là một tiện ích mở rộng Chrome được phát triển bởi ATechAdventurer, và tính năng chính của nó là "An extension that allows you to download beatsaber maps to SideQuest".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng SideQuest BSaber Extension
Tải xuống các tệp mở rộng SideQuest BSaber Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
The Official SideQuest Chrome extension allows you to download beatsaber maps from bsaber.com and automatically install them into SideQuest
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SideQuest BSaber Extension |
ID | fmifajifkgfamekjpeanjmjjiimfhbjl |
URL Chính Thức | https://chromewebstore.google.com/detail/sidequest-bsaber-extensio/fmifajifkgfamekjpeanjmjjiimfhbjl |
Mô tả | An extension that allows you to download beatsaber maps to SideQuest |
Kích Thước Tệp | 26.41 KB |
Số Lần Cài Đặt | 398 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2019-06-11 |
Ngày Phát Hành | 2019-06-11 |
Đánh Giá | 1.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | ATechAdventurer |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension |
URL Trang Trợ Giúp | https://github.com/ATechAdventurer/SideQuest-Chrome-Extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |