IMDB Focus

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

Cos'è IMDB Focus?

IMDB Focus è un'estensione di Chrome sviluppata da mogglas.maps, e la sua funzione principale è "This extension automatically focuses the IMDB.com search field as soon as you enter the site".

Scarica il file CRX dell'estensione IMDB Focus

Scarica i file di estensione IMDB Focus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
URL Ufficiale https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Descrizione This extension automatically focuses the IMDB.com search field as soon as you enter the site
Dimensione del File 35.01 KB
Conteggio Installazioni 15
Versione Corrente 1.0
Ultimo Aggiornamento 2013-06-13
Data di Pubblicazione 2013-06-13
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore mogglas.maps
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}