Start.gg Plus

Improvements to start.gg!

Start.gg Plus란 무엇입니까?

Start.gg Plus은(는) cheesypotatodev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improvements to start.gg!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Start.gg Plus 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        New features for the start.gg website! (recently renamed from smash.gg)

- Dark theme! Handcrafted for every page on the site, settings synced to your Google account
- Seed displays under all player names!
- Shortcut buttons to view your matches in bracket

And more to come! This extension is still in development, if you have ideas or feature requests please let me know at [email protected]                    

확장 프로그램 기본 정보

이름 Start.gg Plus Start.gg Plus
ID kpleddnadkfgfedphhciepmdlfehkgod
공식 URL https://chromewebstore.google.com/detail/startgg-plus/kpleddnadkfgfedphhciepmdlfehkgod
설명 Improvements to start.gg!
파일 크기 15.27 KB
설치 횟수 961
현재 버전 1.4.1
최근 업데이트 2022-08-17
출시 날짜 2022-01-06
평점 4.67/5 총 6 개의 평점
개발자 cheesypotatodev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Start.gg Plus",
    "description": "Improvements to start.gg!",
    "version": "1.4.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "webRequest",
        "storage",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/www.start.gg\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/logo16.png",
            "32": "\/images\/logo32.png",
            "48": "\/images\/logo48.png",
            "128": "\/images\/logo128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.start.gg\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "style.css"
            ],
            "matches": [
                "https:\/\/www.start.gg\/*"
            ]
        }
    ]
}