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開發的Chrome擴展程式,該擴展的主要功能是“When pressing the copy shortcut key on the image, directly copy the image address, no need to right click”。

擴展截圖

screenshot
screenshot

下載Copy Image URL擴展crx文件

下載Copy Image URL擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Copy Image URL Copy Image URL
ID ddembjalhjiblnlfifeldhohmigachhh
官方網址 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"
            ]
        }
    ]
}