But really open image in new tab

But really open image in new tab

Cos'è But really open image in new tab?

But really open image in new tab è un'estensione di Chrome sviluppata da tom, e la sua funzione principale è "But really open image in new tab".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione But really open image in new tab

Scarica i file di estensione But really open image in new tab 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

                        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.                    

Informazioni di Base sull'Estensione

Nome But really open image in new tab But really open image in new tab
ID magmbbfoiobnjaflbhcjkmknfjcaeddk
URL Ufficiale https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk
Descrizione But really open image in new tab
Dimensione del File 7.44 KB
Conteggio Installazioni 368
Versione Corrente 0.2
Ultimo Aggiornamento 2024-02-04
Data di Pubblicazione 2023-08-07
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore tom
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.tomchurchill.co.uk/
Lingue Supportate 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": []
        }
    ]
}