Esportal AutoAccept

A plugin for users to auto accept their matches on esportal

Co to jest Esportal AutoAccept?

Esportal AutoAccept to rozszerzenie Chrome opracowane przez f1schmonsta, a jego główną funkcją jest „A plugin for users to auto accept their matches on esportal”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Esportal AutoAccept

Pobierz pliki rozszerzeń Esportal AutoAccept w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Esportal AutoAccept Esportal AutoAccept
ID iligknooplmpldohcehdaoeimhbkccga
Oficjalny URL https://chromewebstore.google.com/detail/esportal-autoaccept/iligknooplmpldohcehdaoeimhbkccga
Opis A plugin for users to auto accept their matches on esportal
Rozmiar pliku 394 KB
Liczba instalacji 1,838
Aktualna Wersja 1.01
Ostatnia Aktualizacja 2019-12-18
Data Publikacji 2019-12-18
Ocena 4.25/5 Łącznie 4 Oceny
Deweloper f1schmonsta
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}