Right-Click Borescope

List all images under your cursor, even ones hidden by other elements

Right-Click Borescope क्या है?

Right-Click Borescope blackle mori द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "List all images under your cursor, even ones hidden by other elements"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

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

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

                        Dig into web pages, find buried treasure.

Right-Click Borescope allows you to view all images under your cursor, even if there's other images covering it, or if it's an image that has "right-click save" disabled.                    

एक्सटेंशन की मूल जानकारी

नाम Right-Click Borescope Right-Click Borescope
ID mmdokamaalplkfiddbkhpfjmkhecbcnh
आधिकारिक URL https://chromewebstore.google.com/detail/right-click-borescope/mmdokamaalplkfiddbkhpfjmkhecbcnh
विवरण List all images under your cursor, even ones hidden by other elements
फ़ाइल का आकार 70.58 KB
स्थापना संख्या 537
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2022-05-10
प्रकाशन तिथि 2022-03-29
रेटिंग 5.00/5 कुल 12 रेटिंग्स
डेवलपर blackle mori
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/blackle/Right-Click-Borescope
सहायता पृष्ठ URL https://github.com/blackle/Right-Click-Borescope/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Right-Click Borescope",
    "version": "0.0.4",
    "description": "List all images under your cursor, even ones hidden by other elements",
    "permissions": [
        "contextMenus"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "manifest_version": 3
}