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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |