View background image

Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.

Что такое View background image?

View background image - это расширение Chrome, разработанное Espen Hovlandsdal, и его основная функция - "Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения View background image

Скачайте файлы расширений View background image в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Adds a new menu item to web pages - "open background image in new tab". Will try to find the closest element to the clicked area that has a background image.

Tries to mirror Chrome's own "open image in new tab"-functionality, but currently there seems to be no way in Chrome extensions to show a context menu item based on the return value of a function, so currently it is always shown, regardless of the presence of a background image.

This extension is open-source and MIT-licensed. Source code can be found at https://github.com/rexxars/view-background-image - contributions are welcome.                    

Основная информация о расширении

Название View background image View background image
ID mjbfbknmcdpofdfkeencgjaolgcddglh
Официальный URL https://chromewebstore.google.com/detail/view-background-image/mjbfbknmcdpofdfkeencgjaolgcddglh
Описание Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.
Размер файла 7.62 KB
Количество установок 1,849
Текущая Версия 1.0.3
Последнее Обновление 2016-08-07
Дата публикации 2016-08-07
Рейтинг 2.85/5 Всего 41 оценок
Разработчик Espen Hovlandsdal
Тип оплаты free
Официальный сайт расширения https://github.com/rexxars/view-background-image
URL страницы помощи https://github.com/rexxars/view-background-image/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "View background image",
    "version": "1.0.3",
    "description": "Adds a \"open background image in new tab\" menu item. Finds closest element to the clicked area that has a background image.",
    "permissions": [
        "contextMenus",
        ""
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "icons\/128.png",
        "48": "icons\/48.png",
        "16": "icons\/16.png"
    }
}