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 |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } } |