GImages Direct

Makes your Google Images experience better .. :)

Co to jest GImages Direct?

GImages Direct to rozszerzenie Chrome opracowane przez iAnuj, a jego główną funkcją jest „Makes your Google Images experience better .. :)”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GImages Direct

Pobierz pliki rozszerzeń GImages Direct w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa GImages Direct GImages Direct
ID cifcbgbmllbmjpjpcnifgadnkcoimpll
Oficjalny URL https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll
Opis Makes your Google Images experience better .. :)
Rozmiar pliku 9.69 KB
Liczba instalacji 20
Aktualna Wersja 0.1.6
Ostatnia Aktualizacja 2012-08-26
Data Publikacji 2012-08-26
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper iAnuj
Typ Płatności free
Obsługiwane Języki 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*"
    ]
}