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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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"
    }
}