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'est-ce que View background image ?

View background image est une extension Chrome développée par Espen Hovlandsdal, et sa fonction principale est "Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension View background image

Téléchargez les fichiers d'extension View background image au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom View background image View background image
ID mjbfbknmcdpofdfkeencgjaolgcddglh
URL Officiel https://chromewebstore.google.com/detail/view-background-image/mjbfbknmcdpofdfkeencgjaolgcddglh
Description Adds a "open background image in new tab" menu item. Finds closest element to the clicked area that has a background image.
Taille du Fichier 7.62 KB
Nombre d'Installations 1,849
Version Actuelle 1.0.3
Dernière Mise à Jour 2016-08-07
Date de Publication 2016-08-07
Évaluation 2.85/5 Total 41 Évaluations
Développeur Espen Hovlandsdal
Type de Paiement free
Site Web de l'Extension https://github.com/rexxars/view-background-image
URL de la Page d'Aide https://github.com/rexxars/view-background-image/issues
Langues Prises en Charge 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"
    }
}