But really open image in new tab

But really open image in new tab

Qu'est-ce que But really open image in new tab ?

But really open image in new tab est une extension Chrome développée par tom, et sa fonction principale est "But really open image in new tab".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension But really open image in new tab

Téléchargez les fichiers d'extension But really open image in new tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom But really open image in new tab But really open image in new tab
ID magmbbfoiobnjaflbhcjkmknfjcaeddk
URL Officiel https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk
Description But really open image in new tab
Taille du Fichier 7.44 KB
Nombre d'Installations 368
Version Actuelle 0.2
Dernière Mise à Jour 2024-02-04
Date de Publication 2023-08-07
Évaluation 5.00/5 Total 3 Évaluations
Développeur tom
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.tomchurchill.co.uk/
Langues Prises en Charge 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": []
        }
    ]
}