Esportal AutoAccept

A plugin for users to auto accept their matches on esportal

Vad är Esportal AutoAccept?

Esportal AutoAccept är en Chrome-tillägg utvecklad av f1schmonsta, och dess huvudfunktion är "A plugin for users to auto accept their matches on esportal".

Tilläggsskärmbilder

screenshot

Ladda ner Esportal AutoAccept-förlängningens CRX-fil

Ladda ner Esportal AutoAccept-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Esportal AutoAccept Esportal AutoAccept
ID iligknooplmpldohcehdaoeimhbkccga
Officiell webbadress https://chromewebstore.google.com/detail/esportal-autoaccept/iligknooplmpldohcehdaoeimhbkccga
Beskrivning A plugin for users to auto accept their matches on esportal
Filstorlek 394 KB
Antal Installationer 1,838
Aktuell Version 1.01
Senast Uppdaterad 2019-12-18
Publiceringsdatum 2019-12-18
Betyg 4.25/5 Totalt 4 Betyg
Utvecklare f1schmonsta
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}