IMDB Focus
This extension automatically focuses the IMDB.com search field as soon as you enter the site
Wat is IMDB Focus?
IMDB Focus is een Chrome-extensie ontwikkeld door mogglas.maps, en de belangrijkste functie is "This extension automatically focuses the IMDB.com search field as soon as you enter the site".
Download het CRX-bestand van de extensie IMDB Focus
Download IMDB Focus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | cehmjpipcfgpblpfoejhenelmdcjppgk |
Officiële URL | https://chrome.google.com/webstore/detail/imdb-focus/cehmjpipcfgpblpfoejhenelmdcjppgk |
Beschrijving | This extension automatically focuses the IMDB.com search field as soon as you enter the site |
Bestandsgrootte | 35.01 KB |
Aantal Installaties | 15 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2013-06-13 |
Publicatiedatum | 2013-06-13 |
Beoordeling | 4.33/5 Totaal 3 Beoordelingen |
Ontwikkelaar | mogglas.maps |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |