Alt Text Copy

Copy Image Alt Text By Right Clicking

What is Alt Text Copy?

Alt Text Copy is a Chrome extension developed by hskolbeck, and its main feature is "Copy Image Alt Text By Right Clicking".

Extension Screenshots

screenshot
screenshot

Download Alt Text Copy Extension CRX File

Download Alt Text Copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Alt Text Copy Alt Text Copy
ID diklkehamgifnoikknopgieldonffjfk
Official URL https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk
Description Copy Image Alt Text By Right Clicking
File Size 22.98 KB
Installation Count 601
Current Version 1.1
Last Updated 2022-12-31
Publish Date 2022-05-11
Rating 3.33/5 Total 6 Ratings
Developer hskolbeck
Email [email protected]
Payment Type free
Extension Website https://hannah.industries
Supported Languages 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"
    }
}