AutoFocus Pro
Automatically focus text boxes! Remembers your focus!
什麼是AutoFocus Pro?
AutoFocus Pro是由https://rubelet.x10.mx開發的Chrome擴展程式,該擴展的主要功能是“Automatically focus text boxes! Remembers your focus!”。
擴展截圖
下載AutoFocus Pro擴展crx文件
下載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 |
官方網址 | 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" } } |