PugChamp Helper

PugChamp ETF2L, RGL and ESEA division integration.

Что такое PugChamp Helper?

PugChamp Helper - это расширение Chrome, разработанное Kolja Blauhut, и его основная функция - "PugChamp ETF2L, RGL and ESEA division integration.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения PugChamp Helper

Скачайте файлы расширений PugChamp Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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