IMDB Focus

This extension automatically focuses the IMDB.com search field as soon as you enter the site

IMDB Focus क्या है?

IMDB Focus mogglas.maps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically focuses the IMDB.com search field as soon as you enter the site"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में IMDB Focus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.                    

एक्सटेंशन की मूल जानकारी

नाम IMDB Focus IMDB Focus
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"
            ]
        }
    ]
}