But really open image in new tab

But really open image in new tab

But really open image in new tab क्या है?

But really open image in new tab tom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "But really open image in new tab"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में But really open image in new tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम But really open image in new tab But really open image in new tab
ID magmbbfoiobnjaflbhcjkmknfjcaeddk
आधिकारिक URL https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk
विवरण But really open image in new tab
फ़ाइल का आकार 7.44 KB
स्थापना संख्या 368
वर्तमान संस्करण 0.2
अंतिम अपडेट 2024-02-04
प्रकाशन तिथि 2023-08-07
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर tom
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.tomchurchill.co.uk/
समर्थित भाषाएँ 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": []
        }
    ]
}