Autotype - Free Text Expander
Eliminate repetitive typing with shortcuts and boost your productivity.
Autotype - Free Text Expanderとは何ですか?
Autotype - Free Text Expanderはhttps://autotype.aiによって開発されたChromeの拡張機能で、その主な機能は「Eliminate repetitive typing with shortcuts and boost your productivity.」です。
拡張機能のスクリーンショット
Autotype - Free Text Expander拡張機能のCRXファイルをダウンロード
Autotype - Free Text Expander拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Autotype is a text expansion tool that helps you save time and effort by automating your typing. How to use: - Click on the extension icon or the "Open Dashboard" menu item to add/remove shortcuts. - Set your cursor in any text input field. - Press "Ctrl+Space" to open shortcut search. - Select any shortcut to insert its content into the text input field.
拡張機能の基本情報
名前 | Autotype - Free Text Expander |
ID | mgcgenippnenmppgfkbhcenpamhbbcna |
公式URL | https://chromewebstore.google.com/detail/autotype-free-text-expand/mgcgenippnenmppgfkbhcenpamhbbcna |
説明 | Eliminate repetitive typing with shortcuts and boost your productivity. |
ファイルサイズ | 20.85 KB |
インストール数 | 1,043 |
現在のバージョン | 1.0.7 |
最終更新日 | 2023-03-04 |
公開日 | 2023-01-01 |
評価 | 3.50/5 合計 8 レビュー |
開発者 | https://autotype.ai |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Autotype - Free Text Expander", "short_name": "Autotype", "version": "1.0.7", "description": "Eliminate repetitive typing with shortcuts and boost your productivity.", "icons": { "16": "images\/logo-16x16.png", "32": "images\/logo-32x32.png", "48": "images\/logo-48x48.png", "128": "images\/logo-128x128.png" }, "permissions": [ "clipboardRead", "contextMenus", "storage", "unlimitedStorage" ], "action": { "default_title": "Click to open dashboard" }, "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/main.css" ] }, { "all_frames": true, "match_about_blank": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/main.js" ] } ], "web_accessible_resources": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "search\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/app.autotype.ai\/*" ] } } |