Copy Image URL
When pressing the copy shortcut key on the image, directly copy the image address, no need to right click
Was ist Copy Image URL?
Copy Image URL ist eine Chrome-Erweiterung, die von huangxiaoyu1018 entwickelt wurde, und ihr Hauptmerkmal ist "When pressing the copy shortcut key on the image, directly copy the image address, no need to right click".
Erweiterungsscreenshots
Copy Image URL-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Image URL-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Copy image address without right-clicking, just hover the image and hit Ctrl+C / Cmd+C.
Grundlegende Informationen zur Erweiterung
Name | Copy Image URL |
ID | ddembjalhjiblnlfifeldhohmigachhh |
Offizielle URL | https://chromewebstore.google.com/detail/copy-image-url/ddembjalhjiblnlfifeldhohmigachhh |
Beschreibung | When pressing the copy shortcut key on the image, directly copy the image address, no need to right click |
Dateigröße | 3.4 KB |
Installationsanzahl | 79 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-07-25 |
Veröffentlichungsdatum | 2023-07-24 |
Bewertung | 1.00/5 Insgesamt 1 Bewertungen |
Entwickler | huangxiaoyu1018 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |