But really open image in new tab

But really open image in new tab

But really open image in new tab là gì?

But really open image in new tab là một tiện ích mở rộng Chrome được phát triển bởi tom, và tính năng chính của nó là "But really open image in new tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng But really open image in new tab

Tải xuống các tệp mở rộng But really open image in new tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên But really open image in new tab But really open image in new tab
ID magmbbfoiobnjaflbhcjkmknfjcaeddk
URL Chính Thức https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk
Mô tả But really open image in new tab
Kích Thước Tệp 7.44 KB
Số Lần Cài Đặt 368
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2024-02-04
Ngày Phát Hành 2023-08-07
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển tom
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.tomchurchill.co.uk/
Ngôn Ngữ Được Hỗ Trợ 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": []
        }
    ]
}