AutoTyper
This extension automatically types on nitrotype.com.
AutoTyperとは何ですか?
AutoTyperはRyan's Teamによって開発されたChromeの拡張機能で、その主な機能は「This extension automatically types on nitrotype.com.」です。
拡張機能のスクリーンショット
AutoTyper拡張機能のCRXファイルをダウンロード
AutoTyper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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] 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
]
} | |