Alt Text Copy
Copy Image Alt Text By Right Clicking
Wat is Alt Text Copy?
Alt Text Copy is een Chrome-extensie ontwikkeld door hskolbeck, en de belangrijkste functie is "Copy Image Alt Text By Right Clicking".
Extensie Screenshots
Download het CRX-bestand van de extensie Alt Text Copy
Download Alt Text Copy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | diklkehamgifnoikknopgieldonffjfk |
| Officiële URL | https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk |
| Beschrijving | Copy Image Alt Text By Right Clicking |
| Bestandsgrootte | 22.98 KB |
| Aantal Installaties | 601 |
| Huidige Versie | 1.1 |
| Laatst Bijgewerkt | 2022-12-31 |
| Publicatiedatum | 2022-05-11 |
| Beoordeling | 3.33/5 Totaal 6 Beoordelingen |
| Ontwikkelaar | hskolbeck |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://hannah.industries |
| Ondersteunde Talen | 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"
}
} | |