IMDB Focus

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

Qu'est-ce que IMDB Focus ?

IMDB Focus est une extension Chrome développée par mogglas.maps, et sa fonction principale est "This extension automatically focuses the IMDB.com search field as soon as you enter the site".

Télécharger le fichier CRX de l'extension IMDB Focus

Téléchargez les fichiers d'extension IMDB Focus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
URL Officiel 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
Taille du Fichier 35.01 KB
Nombre d'Installations 15
Version Actuelle 1.0
Dernière Mise à Jour 2013-06-13
Date de Publication 2013-06-13
Évaluation 4.33/5 Total 3 Évaluations
Développeur mogglas.maps
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}