IMDB Focus

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

Co to jest IMDB Focus?

IMDB Focus to rozszerzenie Chrome opracowane przez mogglas.maps, a jego główną funkcją jest „This extension automatically focuses the IMDB.com search field as soon as you enter the site”.

Pobierz plik CRX rozszerzenia IMDB Focus

Pobierz pliki rozszerzeń IMDB Focus w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
Oficjalny URL https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Opis This extension automatically focuses the IMDB.com search field as soon as you enter the site
Rozmiar pliku 35.01 KB
Liczba instalacji 15
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-06-13
Data Publikacji 2013-06-13
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper mogglas.maps
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}