IMDB Focus

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

Что такое IMDB Focus?

IMDB Focus - это расширение Chrome, разработанное mogglas.maps, и его основная функция - "This extension automatically focuses the IMDB.com search field as soon as you enter the site".

Скачать файл CRX расширения IMDB Focus

Скачайте файлы расширений IMDB Focus в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название IMDB Focus IMDB Focus
ID cehmjpipcfgpblpfoejhenelmdcjppgk
Официальный URL https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk
Описание This extension automatically focuses the IMDB.com search field as soon as you enter the site
Размер файла 35.01 KB
Количество установок 15
Текущая Версия 1.0
Последнее Обновление 2013-06-13
Дата публикации 2013-06-13
Рейтинг 4.33/5 Всего 3 оценок
Разработчик mogglas.maps
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}