Esportal AutoAccept
A plugin for users to auto accept their matches on esportal
什么是Esportal AutoAccept?
Esportal AutoAccept是由f1schmonsta开发的Chrome扩展程序,该扩展的主要功能是“A plugin for users to auto accept their matches on esportal”。
扩展截图
下载Esportal AutoAccept扩展crx文件
下载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 |
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" } } |