SideQuest BSaber Extension

An extension that allows you to download beatsaber maps to SideQuest

SideQuest BSaber Extensionคืออะไร?

SideQuest BSaber Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ATechAdventurer และคุณลักษณะหลักของมันคือ "An extension that allows you to download beatsaber maps to SideQuest"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SideQuest BSaber Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}