Alt Text Copy
Copy Image Alt Text By Right Clicking
Qu'est-ce que Alt Text Copy ?
Alt Text Copy est une extension Chrome développée par hskolbeck, et sa fonction principale est "Copy Image Alt Text By Right Clicking".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Alt Text Copy
Téléchargez les fichiers d'extension Alt Text Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Alt Text Copy |
ID | diklkehamgifnoikknopgieldonffjfk |
URL Officiel | https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk |
Description | Copy Image Alt Text By Right Clicking |
Taille du Fichier | 22.98 KB |
Nombre d'Installations | 601 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2022-12-31 |
Date de Publication | 2022-05-11 |
Évaluation | 3.33/5 Total 6 Évaluations |
Développeur | hskolbeck |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://hannah.industries |
Langues Prises en Charge | 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" } } |