GImages Direct

Makes your Google Images experience better .. :)

Wat is GImages Direct?

GImages Direct is een Chrome-extensie ontwikkeld door iAnuj, en de belangrijkste functie is "Makes your Google Images experience better .. :)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GImages Direct

Download GImages Direct-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam GImages Direct GImages Direct
ID cifcbgbmllbmjpjpcnifgadnkcoimpll
Officiële URL https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll
Beschrijving Makes your Google Images experience better .. :)
Bestandsgrootte 9.69 KB
Aantal Installaties 20
Huidige Versie 0.1.6
Laatst Bijgewerkt 2012-08-26
Publicatiedatum 2012-08-26
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar iAnuj
Betalingswijze free
Ondersteunde Talen 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*"
    ]
}