Copy Image URL

When pressing the copy shortcut key on the image, directly copy the image address, no need to right click

Copy Image URL क्या है?

Copy Image URL huangxiaoyu1018 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click"।

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

screenshot
screenshot

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

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

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

                        Copy image address without right-clicking, just hover the image and hit Ctrl+C / Cmd+C.                    

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

नाम Copy Image URL Copy Image URL
ID ddembjalhjiblnlfifeldhohmigachhh
आधिकारिक URL https://chromewebstore.google.com/detail/copy-image-url/ddembjalhjiblnlfifeldhohmigachhh
विवरण When pressing the copy shortcut key on the image, directly copy the image address, no need to right click
फ़ाइल का आकार 3.4 KB
स्थापना संख्या 79
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-07-25
प्रकाशन तिथि 2023-07-24
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर huangxiaoyu1018
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Image URL",
    "version": "1.0",
    "description": "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click",
    "permissions": [
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}