Google Full Image Opener

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

O que é Google Full Image Opener?

Google Full Image Opener é uma extensão do Chrome desenvolvida por Arafat Husayn, e sua principal característica é "After clicking an image from search results, use the context menu (right-click) to view the current image.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Full Image Opener

Baixe arquivos de extensão Google Full Image Opener no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Google Full Image Opener Google Full Image Opener
ID beojccknfoajfebcpijalgejjpbdipcb
URL Oficial https://chrome.google.com/webstore/detail/google-full-image-opener/beojccknfoajfebcpijalgejjpbdipcb
Descrição After clicking an image from search results, use the context menu (right-click) to view the current image.
Tamanho do Arquivo 39.81 KB
Contagem de Instalações 78
Versão Atual 2.0
Última Atualização 2020-08-15
Data de Publicação 2020-02-05
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Arafat Husayn
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://github.com/arafathusayn/vanish-ads/blob/master/PRIVACY.md
Idiomas Suportados 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"
    }
}