Exeedme Enhancer
Adds useful features for a better exeedme experience.
Exeedme Enhancer란 무엇입니까?
Exeedme Enhancer은(는) JUZKEN에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds useful features for a better exeedme experience."입니다.
확장 프로그램 스크린샷
Exeedme Enhancer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Exeedme Enhancer is a Chrome extension that enhances the experience on Exeedme.com by adding useful and improving existing features. Features: - Ready up for matches automatically - Show player stats in the match room overview (FACEIT stats) - Join server automatically - more coming soon... All features are configurable to your personal preferences. Developer: https://twitter.com/JuzkenON
확장 프로그램 기본 정보
이름 | Exeedme Enhancer |
ID | oegmgbfjcocjmklcgbpjgabacnjjbhik |
공식 URL | https://chromewebstore.google.com/detail/exeedme-enhancer/oegmgbfjcocjmklcgbpjgabacnjjbhik |
설명 | Adds useful features for a better exeedme experience. |
파일 크기 | 196 KB |
설치 횟수 | 17 |
현재 버전 | 1.1.4 |
최근 업데이트 | 2021-06-08 |
출시 날짜 | 2021-04-27 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | JUZKEN |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://twitter.com/JuzkenON |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Adds useful features for a better exeedme experience.", "version": "1.1.4", "name": "Exeedme Enhancer", "manifest_version": 3, "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-128.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.exeedme.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ { "resources": [ "icon-128.png", "lvl-1.png", "lvl-2.png", "lvl-3.png", "lvl-4.png", "lvl-5.png", "lvl-6.png", "lvl-7.png", "lvl-8.png", "lvl-9.png", "lvl-10.png", "faceit_icon.png" ], "matches": [ "*:\/\/*.exeedme.com\/*" ] } ], "permissions": [ "storage" ] } |