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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tom และคุณลักษณะหลักของมันคือ "But really open image in new tab"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย But really open image in new tab

ดาวน์โหลดไฟล์ส่วนขยาย 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": []
        }
    ]
}