AutoFocus Pro
Automatically focus text boxes! Remembers your focus!
Was ist AutoFocus Pro?
AutoFocus Pro ist eine Chrome-Erweiterung, die von https://rubelet.x10.mx entwickelt wurde, und ihr Hauptmerkmal ist "Automatically focus text boxes! Remembers your focus!".
Erweiterungsscreenshots
AutoFocus Pro-Erweiterungs-CRX-Datei herunterladen
Laden Sie AutoFocus Pro-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | AutoFocus Pro |
ID | ehlpbiljoppfbljcgkmjgenaolnlkccp |
Offizielle URL | https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp |
Beschreibung | Automatically focus text boxes! Remembers your focus! |
Dateigröße | 304 KB |
Installationsanzahl | 322 |
Aktuelle Version | 1.1 |
Letztes Update | 2013-05-23 |
Veröffentlichungsdatum | 2013-05-23 |
Bewertung | 4.25/5 Insgesamt 4 Bewertungen |
Entwickler | https://rubelet.x10.mx |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |