Autotype - Free Text Expander
Eliminate repetitive typing with shortcuts and boost your productivity.
Τι είναι το Autotype - Free Text Expander;
Το Autotype - Free Text Expander είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://autotype.ai, και η κύρια λειτουργία του είναι "Eliminate repetitive typing with shortcuts and boost your productivity.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Autotype - Free Text Expander
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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\/*" ] } } |