Alt Text Copy
Copy Image Alt Text By Right Clicking
Cos'è Alt Text Copy?
Alt Text Copy è un'estensione di Chrome sviluppata da hskolbeck, e la sua funzione principale è "Copy Image Alt Text By Right Clicking".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Alt Text Copy
Scarica i file di estensione Alt Text Copy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Alt Text Copy |
ID | diklkehamgifnoikknopgieldonffjfk |
URL Ufficiale | https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk |
Descrizione | Copy Image Alt Text By Right Clicking |
Dimensione del File | 22.98 KB |
Conteggio Installazioni | 601 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2022-12-31 |
Data di Pubblicazione | 2022-05-11 |
Valutazione | 3.33/5 Totale 6 Valutazioni |
Sviluppatore | hskolbeck |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://hannah.industries |
Lingue Supportate | 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" } } |