Esportal AutoAccept

A plugin for users to auto accept their matches on esportal

Что такое Esportal AutoAccept?

Esportal AutoAccept - это расширение Chrome, разработанное f1schmonsta, и его основная функция - "A plugin for users to auto accept their matches on esportal".

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

screenshot

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

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

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

                        Esportal autoaccept is a tool for players at esportal.com to auto accept their matches while they are in que for a game or waiting for users to join a gather.                    

Основная информация о расширении

Название Esportal AutoAccept Esportal AutoAccept
ID iligknooplmpldohcehdaoeimhbkccga
Официальный URL https://chromewebstore.google.com/detail/esportal-autoaccept/iligknooplmpldohcehdaoeimhbkccga
Описание A plugin for users to auto accept their matches on esportal
Размер файла 394 KB
Количество установок 1,838
Текущая Версия 1.01
Последнее Обновление 2019-12-18
Дата публикации 2019-12-18
Рейтинг 4.25/5 Всего 4 оценок
Разработчик f1schmonsta
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Esportal AutoAccept",
    "description": "A plugin for users to auto accept their matches on esportal",
    "version": "1.01",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.esportal.com\/*",
        "storage",
        "management",
        "background"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.esportal.com\/*"
            ],
            "js": [
                "jquery-3.4.1.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "startpage.html",
        "default_icon": "off.png",
        "default_title": "Esportal AutoAccept"
    }
}