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"
    }
}