GImages Direct
Makes your Google Images experience better .. :)
Cos'è GImages Direct?
GImages Direct è un'estensione di Chrome sviluppata da iAnuj, e la sua funzione principale è "Makes your Google Images experience better .. :)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GImages Direct
Scarica i file di estensione GImages Direct in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 .. :)
Informazioni di Base sull'Estensione
Nome | |
ID | cifcbgbmllbmjpjpcnifgadnkcoimpll |
URL Ufficiale | https://chrome.google.com/webstore/detail/gimages-direct/cifcbgbmllbmjpjpcnifgadnkcoimpll |
Descrizione | Makes your Google Images experience better .. :) |
Dimensione del File | 9.69 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 0.1.6 |
Ultimo Aggiornamento | 2012-08-26 |
Data di Pubblicazione | 2012-08-26 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | iAnuj |
Tipo di Pagamento | free |
Lingue Supportate | 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*" ] } |