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.

O que é View background image?

View background image é uma extensão do Chrome desenvolvida por Espen Hovlandsdal, e sua principal característica é "Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão View background image

Baixe arquivos de extensão View background image no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome View background image View background image
ID mjbfbknmcdpofdfkeencgjaolgcddglh
URL Oficial https://chromewebstore.google.com/detail/view-background-image/mjbfbknmcdpofdfkeencgjaolgcddglh
Descrição Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.
Tamanho do Arquivo 7.62 KB
Contagem de Instalações 1,849
Versão Atual 1.0.3
Última Atualização 2016-08-07
Data de Publicação 2016-08-07
Classificação 2.85/5 Total de 41 Avaliações
Desenvolvedor Espen Hovlandsdal
Tipo de Pagamento free
Site da Extensão https://github.com/rexxars/view-background-image
URL da Página de Ajuda https://github.com/rexxars/view-background-image/issues
Idiomas Suportados 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"
    }
}