IMDB Focus

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

Co je IMDB Focus?

IMDB Focus je rozšíření Chrome vyvinuté mogglas.maps, a jeho hlavní funkcí je „This extension automatically focuses the IMDB.com search field as soon as you enter the site“.

Stáhnout soubor CRX rozšíření IMDB Focus

Stáhněte si soubory rozšíření IMDB Focus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
Oficiální URL https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Popis This extension automatically focuses the IMDB.com search field as soon as you enter the site
Velikost souboru 35.01 KB
Počet instalací 15
Aktuální Verze 1.0
Poslední Aktualizace 2013-06-13
Datum Vydání 2013-06-13
Hodnocení 4.33/5 Celkem 3 Hodnocení
Vývojář mogglas.maps
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}