PugChamp Helper

PugChamp ETF2L, RGL and ESEA division integration.

PugChamp Helper là gì?

PugChamp Helper là một tiện ích mở rộng Chrome được phát triển bởi Kolja Blauhut, và tính năng chính của nó là "PugChamp ETF2L, RGL and ESEA division integration.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PugChamp Helper

Tải xuống các tệp mở rộng PugChamp Helper 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PugChamp Helper PugChamp Helper
ID lnjfjdblfmeanpddnhmkonamfekkpaff
URL Chính Thức https://chromewebstore.google.com/detail/pugchamp-helper/lnjfjdblfmeanpddnhmkonamfekkpaff
Mô tả PugChamp ETF2L, RGL and ESEA division integration.
Kích Thước Tệp 37.56 KB
Số Lần Cài Đặt 209
Phiên Bản Hiện Tại 1.47
Cập Nhật Lần Cuối 2020-12-16
Ngày Phát Hành 2020-06-07
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Kolja Blauhut
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/kblauhut/PugChamp-Helper
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}