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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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