Show The Image

Press Ctrl/Cmd+Q to show the largest image in the page

O que é Show The Image?

Show The Image é uma extensão do Chrome desenvolvida por jan.pesa, e sua principal característica é "Press Ctrl/Cmd+Q to show the largest image in the page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Show The Image

Baixe arquivos de extensão Show The Image 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

                        I often bump into image galleries where clicking on thumbnails will take you to a new page with the original photo. The usual problem with these "detail pages" is that they contain a lot of other elements and noise like adverts, other thumbnails, unrelated content and image is often shrinked and cropped so you don't see the original right away.

This extension solves that by providing you with a simple keyboard shortcut CTRL+Q (Windows) or Cmd+Q (MacOS) that finds the largest image in the current page (eventually searches for a link leading to even larger original image) and displays it without any disturbing elements. Pressing the shortcut again will take you back.

If this gets somewhat popular, I may add configurable shortcut and more - leave your ideas. Enjoy.                    

Informações Básicas da Extensão

Nome Show The Image Show The Image
ID gfadjkidlmepfcieicmhmfgolejnnbol
URL Oficial https://chromewebstore.google.com/detail/show-the-image/gfadjkidlmepfcieicmhmfgolejnnbol
Descrição Press Ctrl/Cmd+Q to show the largest image in the page
Tamanho do Arquivo 9.48 KB
Contagem de Instalações 47
Versão Atual 1.0.0
Última Atualização 2020-10-24
Data de Publicação 2020-01-19
Desenvolvedor jan.pesa
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/smajl/show-the-image
URL da Página de Ajuda https://github.com/smajl/show-the-image/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show The Image",
    "description": "Press Ctrl\/Cmd+Q to show the largest image in the page",
    "version": "1.0.0",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "show-the-image": {
            "suggested_key": {
                "default": "Ctrl+Q"
            },
            "description": "Key for showing the largest image and going back to original page"
        }
    },
    "permissions": [
        "activeTab"
    ]
}