IMDB Focus

This extension automatically focuses the IMDB.com search field as soon as you enter the site

IMDB Focus là gì?

IMDB Focus là một tiện ích mở rộng Chrome được phát triển bởi mogglas.maps, và tính năng chính của nó là "This extension automatically focuses the IMDB.com search field as soon as you enter the site".

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

Tải xuống các tệp mở rộng IMDB Focus 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 is just a one line js chrome extension, but it solves a big pet peeve of mine. It automatically focuses the search field when entering the IMDB.com site. 99.9 times out of a 100 i enter IMDB.com with the intention of searching for a specific actor, TV-series or movie. This extension is for all of you that, like me, don't feel like moving your hands away from the keyboard and using the mouse just to click that annoying search field to activate it.                    

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

Tên IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
URL Chính Thức https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Mô tả This extension automatically focuses the IMDB.com search field as soon as you enter the site
Kích Thước Tệp 35.01 KB
Số Lần Cài Đặt 15
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-06-13
Ngày Phát Hành 2013-06-13
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển mogglas.maps
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": "IMDB Focus",
    "description": "This extension automatically focuses the IMDB.com search field as soon as you enter the site",
    "version": "1.0",
    "permissions": [
        "http:\/\/www.imdb.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/"
            ],
            "js": [
                "jquery.js",
                "focus.js"
            ]
        }
    ]
}