AutoFocus Pro
Automatically focus text boxes! Remembers your focus!
Τι είναι το AutoFocus Pro;
Το AutoFocus Pro είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://rubelet.x10.mx, και η κύρια λειτουργία του είναι "Automatically focus text boxes! Remembers your focus!".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AutoFocus Pro
Λήψη αρχείων επέκτασης AutoFocus Pro σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This chrome extensions allows you to auto focus on page inputs without having to click! To remember to focus on a text box, just hold CTRL+ALT and click once on the text box you want to focus on. When visiting the website again, you can instantly start typing! You can check and edit the website focus in the options popup on the right side of the address bar. Your auto focus choices are synced with your email account so the app can remember your choices anywhere you go!
Βασικές Πληροφορίες Επέκτασης
Όνομα | AutoFocus Pro |
ID | ehlpbiljoppfbljcgkmjgenaolnlkccp |
Επίσημο URL | https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp |
Περιγραφή | Automatically focus text boxes! Remembers your focus! |
Μέγεθος Αρχείου | 304 KB |
Αριθμός Εγκαταστάσεων | 322 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2013-05-23 |
Ημερομηνία Δημοσίευσης | 2013-05-23 |
Αξιολόγηση | 4.25/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | https://rubelet.x10.mx |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AutoFocus Pro", "description": "Automatically focus text boxes! Remembers your focus!", "version": "1.1", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "storage", "tabs" ], "background": { "scripts": [ "js\/jquery.js", "js\/events.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/jquery-ui.js", "bootstrap\/js\/bootstrap.min.js", "js\/getsearch.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon-19.png", "default_popup": "popup.html" } } |