Copy Image URL

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

What is Copy Image URL?

Copy Image URL is a Chrome extension developed by huangxiaoyu1018, and its main feature is "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click".

Extension Screenshots

screenshot
screenshot

Download Copy Image URL Extension CRX File

Download Copy Image URL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Copy Image URL Copy Image URL
ID ddembjalhjiblnlfifeldhohmigachhh
Official URL https://chromewebstore.google.com/detail/copy-image-url/ddembjalhjiblnlfifeldhohmigachhh
Description When pressing the copy shortcut key on the image, directly copy the image address, no need to right click
File Size 3.4 KB
Installation Count 79
Current Version 1.0
Last Updated 2023-07-25
Publish Date 2023-07-24
Rating 1.00/5 Total 1 Ratings
Developer huangxiaoyu1018
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}