Alt Text Copy
Copy Image Alt Text By Right Clicking
Hvad er Alt Text Copy?
Alt Text Copy er en Chrome-udvidelse udviklet af hskolbeck, og dens hovedfunktion er "Copy Image Alt Text By Right Clicking".
Udvidelsesskærmbilleder
Download Alt Text Copy-udvidelses-CRX-fil
Download Alt Text Copy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Alt Text Copy |
ID | diklkehamgifnoikknopgieldonffjfk |
Officiel URL | https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk |
Beskrivelse | Copy Image Alt Text By Right Clicking |
Filstørrelse | 22.98 KB |
Antal Installationer | 601 |
Nuværende Version | 1.1 |
Senest Opdateret | 2022-12-31 |
Udgivelsesdato | 2022-05-11 |
Bedømmelse | 3.33/5 Samlet 6 Bedømmelser |
Udvikler | hskolbeck |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://hannah.industries |
Understøttede Sprog | 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" } } |