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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } ] } |