behind!

Finds and opens all images under your cursor.

ما هو behind!؟

behind! هو إضافة Chrome تم تطويرها بواسطة Devrim Şahin، والميزة الرئيسية لها هي "Finds and opens all images under your cursor.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة behind!

قم بتنزيل ملفات الامتداد behind! بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        When "view background image" is greyed out, this add-on is there to help you.

behind! can reveal:

- Background images,
- Images under layers of nonsense (e.g. clickable surfaces designed to hide the image from you),
- Embedded images / base64-encoded image chunks,
- Alternative resolutions ,
- Vector images (even when they are inlined),
- Images in shadow DOM

Source code: https://github.com/kubuzetto/behind                    

معلومات أساسية عن التمديد

الاسم behind! behind!
ID blfpdedbdighagggfhgihcocfheicfjk
عنوان URL الرسمي https://chromewebstore.google.com/detail/behind/blfpdedbdighagggfhgihcocfheicfjk
الوصف Finds and opens all images under your cursor.
حجم الملف 48.65 KB
عدد التثبيتات 1,833
النسخة الحالية 0.2.20
آخر تحديث 2022-04-16
تاريخ النشر 2020-04-07
تقييم 4.80/5 مجموع تقييمات 5
المطور Devrim Şahin
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/kubuzetto/behind
عنوان صفحة المساعدة https://github.com/kubuzetto/behind/issues
اللغات المدعومة en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "version": "0.2.20",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "",
        "tabs",
        "contextMenus",
        "storage"
    ],
    "optional_permissions": [
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "browser-polyfill.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png",
        "256": "icon256.png"
    }
}