PugChamp Helper

PugChamp ETF2L, RGL and ESEA division integration.

PugChamp Helper란 무엇입니까?

PugChamp Helper은(는) Kolja Blauhut에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "PugChamp ETF2L, RGL and ESEA division integration."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

PugChamp Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Color codes players by their ETF2L, RGL and ESEA divisions. Please note that this is currently still in beta and some features may not yet work or break during usage. I'd really appreciate if you could report any bugs here: https://github.com/kodeeey/PugChamp-Helper                    

확장 프로그램 기본 정보

이름 PugChamp Helper PugChamp Helper
ID lnjfjdblfmeanpddnhmkonamfekkpaff
공식 URL https://chromewebstore.google.com/detail/pugchamp-helper/lnjfjdblfmeanpddnhmkonamfekkpaff
설명 PugChamp ETF2L, RGL and ESEA division integration.
파일 크기 37.56 KB
설치 횟수 209
현재 버전 1.47
최근 업데이트 2020-12-16
출시 날짜 2020-06-07
평점 5.00/5 총 5 개의 평점
개발자 Kolja Blauhut
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/kblauhut/PugChamp-Helper
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PugChamp Helper",
    "description": "PugChamp ETF2L, RGL and ESEA division integration.",
    "version": "1.47",
    "permissions": [
        "storage",
        "http:\/\/api.etf2l.org\/*",
        "https:\/\/api.etf2l.org\/*",
        "https:\/\/payload.tf\/api\/rgl\/*",
        "https:\/\/raw.githubusercontent.com\/*"
    ],
    "web_accessible_resources": [
        "res\/css\/divTag.css"
    ],
    "background": {
        "scripts": [
            "background.js",
            "bgrequests.js",
            "websocket.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.pug.champ.gg\/",
                "http:\/\/*.pug.champ.gg\/"
            ],
            "js": [
                "src\/contentscripts\/main.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.pug.champ.gg\/player\/*",
                "http:\/\/*.pug.champ.gg\/player\/*"
            ],
            "js": [
                "src\/contentscripts\/profile.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "src\/popup\/popup.html",
        "default_icon": []
    },
    "content_security_policy": "script-src 'self' https:\/\/maxcdn.bootstrapcdn.com\/ https:\/\/ajax.googleapis.com\/; object-src 'self'",
    "icons": {
        "16": "\/res\/images\/icon16.png",
        "48": "\/res\/images\/icon48.png",
        "128": "\/res\/images\/icon128.png"
    }
}