IMDB Focus

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

Vad är IMDB Focus?

IMDB Focus är en Chrome-tillägg utvecklad av mogglas.maps, och dess huvudfunktion är "This extension automatically focuses the IMDB.com search field as soon as you enter the site".

Ladda ner IMDB Focus-förlängningens CRX-fil

Ladda ner IMDB Focus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
Officiell webbadress https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Beskrivning This extension automatically focuses the IMDB.com search field as soon as you enter the site
Filstorlek 35.01 KB
Antal Installationer 15
Aktuell Version 1.0
Senast Uppdaterad 2013-06-13
Publiceringsdatum 2013-06-13
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare mogglas.maps
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}