Esportal AutoAccept
A plugin for users to auto accept their matches on esportal
Was ist Esportal AutoAccept?
Esportal AutoAccept ist eine Chrome-Erweiterung, die von f1schmonsta entwickelt wurde, und ihr Hauptmerkmal ist "A plugin for users to auto accept their matches on esportal".
Erweiterungsscreenshots
Esportal AutoAccept-Erweiterungs-CRX-Datei herunterladen
Laden Sie Esportal AutoAccept-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iligknooplmpldohcehdaoeimhbkccga |
| Offizielle URL | https://chromewebstore.google.com/detail/esportal-autoaccept/iligknooplmpldohcehdaoeimhbkccga |
| Beschreibung | A plugin for users to auto accept their matches on esportal |
| Dateigröße | 394 KB |
| Installationsanzahl | 1,838 |
| Aktuelle Version | 1.01 |
| Letztes Update | 2019-12-18 |
| Veröffentlichungsdatum | 2019-12-18 |
| Bewertung | 4.25/5 Insgesamt 4 Bewertungen |
| Entwickler | f1schmonsta |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |