Copy Image URL

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

Vad är Copy Image URL?

Copy Image URL är en Chrome-tillägg utvecklad av huangxiaoyu1018, och dess huvudfunktion är "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Copy Image URL-förlängningens CRX-fil

Ladda ner Copy Image URL-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Copy Image URL Copy Image URL
ID ddembjalhjiblnlfifeldhohmigachhh
Officiell webbadress https://chromewebstore.google.com/detail/copy-image-url/ddembjalhjiblnlfifeldhohmigachhh
Beskrivning When pressing the copy shortcut key on the image, directly copy the image address, no need to right click
Filstorlek 3.4 KB
Antal Installationer 79
Aktuell Version 1.0
Senast Uppdaterad 2023-07-25
Publiceringsdatum 2023-07-24
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare huangxiaoyu1018
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}