IMDB Focus

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

Hvad er IMDB Focus?

IMDB Focus er en Chrome-udvidelse udviklet af mogglas.maps, og dens hovedfunktion er "This extension automatically focuses the IMDB.com search field as soon as you enter the site".

Download IMDB Focus-udvidelses-CRX-fil

Download IMDB Focus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
Officiel URL https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Beskrivelse This extension automatically focuses the IMDB.com search field as soon as you enter the site
Filstørrelse 35.01 KB
Antal Installationer 15
Nuværende Version 1.0
Senest Opdateret 2013-06-13
Udgivelsesdato 2013-06-13
Bedømmelse 4.33/5 Samlet 3 Bedømmelser
Udvikler mogglas.maps
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}