AutoTyper
This extension automatically types on nitrotype.com.
AutoTyper란 무엇입니까?
AutoTyper은(는) Ryan's Team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension automatically types on nitrotype.com."입니다.
확장 프로그램 스크린샷
AutoTyper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The NitroTypeX is a powerful Chrome extension designed to enhance your experience on nitrotype.com, the ultimate typing game. It's perfect to increase the race performance. Key Features: Automated Typing: Boost your typing speed and accuracy effortlessly with the NitroTypeX. It automatically types the words for you, enabling you to focus solely on strategy and timing. Customizable Speed: Tailor the typing speed to your preference. Whether you're a beginner or a seasoned typer, the extension allows you to adjust the typing speed to match your skill. If you have issues please contact me by email at [email protected]
확장 프로그램 기본 정보
이름 | AutoTyper |
ID | opnknikopecmeofkhnclnodmlboapepn |
공식 URL | https://chromewebstore.google.com/detail/autotyper/opnknikopecmeofkhnclnodmlboapepn |
설명 | This extension automatically types on nitrotype.com. |
파일 크기 | 149 KB |
설치 횟수 | 3,000 |
현재 버전 | 1.2.7 |
최근 업데이트 | 2023-09-28 |
출시 날짜 | 2023-08-08 |
평점 | 3.08/5 총 25 개의 평점 |
개발자 | Ryan's Team |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AutoTyper", "description": "This extension automatically types on nitrotype.com.", "version": "1.2.7", "icons": { "16": "assets\/icons\/favicon-16x16.png", "32": "assets\/icons\/favicon-32x32.png", "48": "assets\/icons\/favicon-32x32.png", "128": "assets\/icons\/favicon-32x32.png" }, "permissions": [ "storage" ], "content_scripts": [ { "id": "auto-typing", "matches": [ "https:\/\/*.nitrotype.com\/garage" ], "exclude_matches": [ "*:\/\/*\/race" ], "js": [ "AutoTyping.js" ], "run_at": "document_end" }, { "id": "active-session", "matches": [ "https:\/\/*.nitrotype.com\/*" ], "js": [ "ActiveSession.js" ], "run_at": "document_end" } ] } |