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.

¿Qué es View background image?

View background image es una extensión de Chrome desarrollada por Espen Hovlandsdal, y su función principal es "Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión View background image

Descarga archivos de extensión View background image en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre View background image View background image
ID mjbfbknmcdpofdfkeencgjaolgcddglh
URL Oficial https://chromewebstore.google.com/detail/view-background-image/mjbfbknmcdpofdfkeencgjaolgcddglh
Descripción Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.
Tamaño del Archivo 7.62 KB
Cantidad de Instalaciones 1,849
Versión Actual 1.0.3
Última Actualización 2016-08-07
Fecha de Publicación 2016-08-07
Calificación 2.85/5 Total de 41 Calificaciones
Desarrollador Espen Hovlandsdal
Tipo de Pago free
Sitio Web de la Extensión https://github.com/rexxars/view-background-image
URL de la Página de Ayuda https://github.com/rexxars/view-background-image/issues
Idiomas Soportados 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"
    }
}