AutoFocus Pro
Automatically focus text boxes! Remembers your focus!
Cos'è AutoFocus Pro?
AutoFocus Pro è un'estensione di Chrome sviluppata da https://rubelet.x10.mx, e la sua funzione principale è "Automatically focus text boxes! Remembers your focus!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AutoFocus Pro
Scarica i file di estensione AutoFocus Pro in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | AutoFocus Pro |
ID | ehlpbiljoppfbljcgkmjgenaolnlkccp |
URL Ufficiale | https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp |
Descrizione | Automatically focus text boxes! Remembers your focus! |
Dimensione del File | 304 KB |
Conteggio Installazioni | 322 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2013-05-23 |
Data di Pubblicazione | 2013-05-23 |
Valutazione | 4.25/5 Totale 4 Valutazioni |
Sviluppatore | https://rubelet.x10.mx |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |