GImages Direct

Makes your Google Images experience better .. :)

Apa itu GImages Direct?

GImages Direct adalah ekstensi Chrome yang dikembangkan oleh iAnuj, dan fitur utamanya adalah "Makes your Google Images experience better .. :)".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GImages Direct

Unduh file ekstensi GImages Direct dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama GImages Direct GImages Direct
ID cifcbgbmllbmjpjpcnifgadnkcoimpll
URL Resmi https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll
Deskripsi Makes your Google Images experience better .. :)
Ukuran File 9.69 KB
Jumlah Instalasi 20
Versi Saat Ini 0.1.6
Terakhir Diperbarui 2012-08-26
Tanggal Publikasi 2012-08-26
Penilaian 4.00/5 Total 1 Penilaian
Pengembang iAnuj
Tipe Pembayaran free
Bahasa yang Didukung 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*"
    ]
}