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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |