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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में View background image एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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