Alt Text Copy
Copy Image Alt Text By Right Clicking
Was ist Alt Text Copy?
Alt Text Copy ist eine Chrome-Erweiterung, die von hskolbeck entwickelt wurde, und ihr Hauptmerkmal ist "Copy Image Alt Text By Right Clicking".
Erweiterungsscreenshots
Alt Text Copy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Alt Text Copy-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
Adds an option to the right-click menu for images to allow easy copying of alt text, if present. After installing, pages will need to be refreshed before the extension will work.
Grundlegende Informationen zur Erweiterung
Name | Alt Text Copy |
ID | diklkehamgifnoikknopgieldonffjfk |
Offizielle URL | https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk |
Beschreibung | Copy Image Alt Text By Right Clicking |
Dateigröße | 22.98 KB |
Installationsanzahl | 601 |
Aktuelle Version | 1.1 |
Letztes Update | 2022-12-31 |
Veröffentlichungsdatum | 2022-05-11 |
Bewertung | 3.33/5 Insgesamt 6 Bewertungen |
Entwickler | hskolbeck |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://hannah.industries |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.1", "manifest_version": 3, "default_locale": "en_US", "background": { "service_worker": "menu.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts\/getClickTarget.js" ] } ], "permissions": [ "clipboardWrite", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "action": { "default_icon": { "16": "images\/AltTextCopy16.png", "32": "images\/AltTextCopy32.png", "48": "images\/AltTextCopy48.png", "128": "images\/AltTextCopy128.png" } }, "icons": { "16": "images\/AltTextCopy16.png", "32": "images\/AltTextCopy32.png", "48": "images\/AltTextCopy48.png", "128": "images\/AltTextCopy128.png" } } |