Google Full Image Opener

After clicking an image from search results, use the context menu (right-click) to view the current image.

Cos'è Google Full Image Opener?

Google Full Image Opener è un'estensione di Chrome sviluppata da Arafat Husayn, e la sua funzione principale è "After clicking an image from search results, use the context menu (right-click) to view the current image.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Full Image Opener

Scarica i file di estensione Google Full Image Opener 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

                        It brings the original image link opening back on new Google Images website.

How to use:

After clicking an image from search results, use the context menu (right-click) to view the current image in a new tab.                    

Informazioni di Base sull'Estensione

Nome Google Full Image Opener Google Full Image Opener
ID beojccknfoajfebcpijalgejjpbdipcb
URL Ufficiale https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb
Descrizione After clicking an image from search results, use the context menu (right-click) to view the current image.
Dimensione del File 39.81 KB
Conteggio Installazioni 78
Versione Corrente 2.0
Ultimo Aggiornamento 2020-08-15
Data di Pubblicazione 2020-02-05
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Arafat Husayn
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Full Image Opener",
    "short_name": "google-full-image-opener",
    "description": "After clicking an image from search results, use the context menu (right-click) to view the current image.",
    "version": "2.0",
    "permissions": [
        "contextMenus",
        "storage",
        "tabs",
        "https:\/\/www.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "128": "icon128.png"
    }
}