But really open image in new tab

But really open image in new tab

Was ist But really open image in new tab?

But really open image in new tab ist eine Chrome-Erweiterung, die von tom entwickelt wurde, und ihr Hauptmerkmal ist "But really open image in new tab".

Erweiterungsscreenshots

screenshot

But really open image in new tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie But really open image in new tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name But really open image in new tab But really open image in new tab
ID magmbbfoiobnjaflbhcjkmknfjcaeddk
Offizielle URL https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk
Beschreibung But really open image in new tab
Dateigröße 7.44 KB
Installationsanzahl 368
Aktuelle Version 0.2
Letztes Update 2024-02-04
Veröffentlichungsdatum 2023-08-07
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler tom
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.tomchurchill.co.uk/
Unterstützte Sprachen 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": []
        }
    ]
}