AutoFocus Pro

Automatically focus text boxes! Remembers your focus!

AutoFocus Pro là gì?

AutoFocus Pro là một tiện ích mở rộng Chrome được phát triển bởi https://rubelet.x10.mx, và tính năng chính của nó là "Automatically focus text boxes! Remembers your focus!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AutoFocus Pro

Tải xuống các tệp mở rộng AutoFocus Pro dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AutoFocus Pro AutoFocus Pro
ID ehlpbiljoppfbljcgkmjgenaolnlkccp
URL Chính Thức https://chromewebstore.google.com/detail/autofocus-pro/ehlpbiljoppfbljcgkmjgenaolnlkccp
Mô tả Automatically focus text boxes! Remembers your focus!
Kích Thước Tệp 304 KB
Số Lần Cài Đặt 322
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2013-05-23
Ngày Phát Hành 2013-05-23
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://rubelet.x10.mx
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}