IMDB Focus
This extension automatically focuses the IMDB.com search field as soon as you enter the site
什么是IMDB Focus?
IMDB Focus是由mogglas.maps开发的Chrome扩展程序,该扩展的主要功能是“This extension automatically focuses the IMDB.com search field as soon as you enter the site”。
下载IMDB Focus扩展crx文件
下载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.
扩展基本信息
名称 | |
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" ] } ] } |