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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |