IMDB Focus
This extension automatically focuses the IMDB.com search field as soon as you enter the site
O que é IMDB Focus?
IMDB Focus é uma extensão do Chrome desenvolvida por mogglas.maps, e sua principal característica é "This extension automatically focuses the IMDB.com search field as soon as you enter the site".
Baixar o arquivo CRX da Extensão IMDB Focus
Baixe arquivos de extensão IMDB Focus no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | cehmjpipcfgpblpfoejhenelmdcjppgk |
URL Oficial | https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk |
Descrição | This extension automatically focuses the IMDB.com search field as soon as you enter the site |
Tamanho do Arquivo | 35.01 KB |
Contagem de Instalações | 15 |
Versão Atual | 1.0 |
Última Atualização | 2013-06-13 |
Data de Publicação | 2013-06-13 |
Classificação | 4.33/5 Total de 3 Avaliações |
Desenvolvedor | mogglas.maps |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |