GImages Direct

Makes your Google Images experience better .. :)

Co je GImages Direct?

GImages Direct je rozšíření Chrome vyvinuté iAnuj, a jeho hlavní funkcí je „Makes your Google Images experience better .. :)“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GImages Direct

Stáhněte si soubory rozšíření GImages Direct ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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 .. :)                    

Základní Informace o Rozšíření

Název GImages Direct GImages Direct
ID cifcbgbmllbmjpjpcnifgadnkcoimpll
Oficiální URL https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll
Popis Makes your Google Images experience better .. :)
Velikost souboru 9.69 KB
Počet instalací 20
Aktuální Verze 0.1.6
Poslední Aktualizace 2012-08-26
Datum Vydání 2012-08-26
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář iAnuj
Typ Platby free
Podporované Jazyky 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*"
    ]
}