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"입니다.

확장 프로그램 스크린샷

screenshot

SideQuest BSaber Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}