GImages Direct

Makes your Google Images experience better .. :)

GImages Direct क्या है?

GImages Direct iAnuj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes your Google Images experience better .. :)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

crx प्रारूप में GImages Direct एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Gives you instant direct access to images.

# Opens direct images in a silent background tab (a time saver for power users)
# Searches for 640x480 and higher images by default
# Right click context menu option to enable/disable GImages Direct.
# + some miscellaneous tweaks

All this to make your Google Images experience better .. :)                    

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

नाम GImages Direct GImages Direct
ID cifcbgbmllbmjpjpcnifgadnkcoimpll
आधिकारिक URL https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll
विवरण Makes your Google Images experience better .. :)
फ़ाइल का आकार 9.69 KB
स्थापना संख्या 20
वर्तमान संस्करण 0.1.6
अंतिम अपडेट 2012-08-26
प्रकाशन तिथि 2012-08-26
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर iAnuj
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GImages Direct",
    "description": "Makes your Google Images experience better .. :)",
    "version": "0.1.6",
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png"
    },
    "background": {
        "page": "bg.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "matches": [
                "*:\/\/*.google.com\/*tbm=isch*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "google-images-direct.js",
        "style.css"
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/*.google.com\/*tbm=isch*"
    ]
}