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开发的Chrome扩展程序,该扩展的主要功能是“But really open image in new tab”。

扩展截图

screenshot

下载But really open image in new tab扩展crx文件

下载But really open image in new tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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": []
        }
    ]
}