But really open image in new tab

But really open image in new tab

O que é But really open image in new tab?

But really open image in new tab é uma extensão do Chrome desenvolvida por tom, e sua principal característica é "But really open image in new tab".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão But really open image in new tab

Baixe arquivos de extensão But really open image in new tab 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

                        You know when you right click an image there is the option to "Open image in new tab"? You know how it doesn't work if the image is covered by another hidden element? Wouldn't it be nice if you could just tell it to ignore those elements and just open the damn image hidden underneath. Well good news, that's what this extension does!

Bonus features!
* If there are lots of images stacked on top of each other, it will open all of the images.
* It will even check for images using the CSS background-image property.
* Not only that but it will work on SVGs too!

Note: It doesn't work on the Chrome Web Store pages because they restrict extensions on here.                    

Informações Básicas da Extensão

Nome But really open image in new tab But really open image in new tab
ID magmbbfoiobnjaflbhcjkmknfjcaeddk
URL Oficial https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk
Descrição But really open image in new tab
Tamanho do Arquivo 7.44 KB
Contagem de Instalações 368
Versão Atual 0.2
Última Atualização 2024-02-04
Data de Publicação 2023-08-07
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor tom
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.tomchurchill.co.uk/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "But really open image in new tab",
    "description": "But really open image in new tab",
    "version": "0.2",
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "128": "icons\/icon.png"
    },
    "background": {
        "service_worker": "js\/main.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/content.js"
            ],
            "css": []
        }
    ]
}