IMDB Focus

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

What is IMDB Focus?

IMDB Focus is a Chrome extension developed by mogglas.maps, and its main feature is "This extension automatically focuses the IMDB.com search field as soon as you enter the site".

Download IMDB Focus Extension CRX File

Download IMDB Focus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
Official URL https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Description This extension automatically focuses the IMDB.com search field as soon as you enter the site
File Size 35.01 KB
Installation Count 15
Current Version 1.0
Last Updated 2013-06-13
Publish Date 2013-06-13
Rating 4.33/5 Total 3 Ratings
Developer mogglas.maps
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}