Alt Text Copy

Copy Image Alt Text By Right Clicking

Vad är Alt Text Copy?

Alt Text Copy är en Chrome-tillägg utvecklad av hskolbeck, och dess huvudfunktion är "Copy Image Alt Text By Right Clicking".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Alt Text Copy-förlängningens CRX-fil

Ladda ner Alt Text Copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Alt Text Copy Alt Text Copy
ID diklkehamgifnoikknopgieldonffjfk
Officiell webbadress https://chromewebstore.google.com/detail/alt-text-copy/diklkehamgifnoikknopgieldonffjfk
Beskrivning Copy Image Alt Text By Right Clicking
Filstorlek 22.98 KB
Antal Installationer 601
Aktuell Version 1.1
Senast Uppdaterad 2022-12-31
Publiceringsdatum 2022-05-11
Betyg 3.33/5 Totalt 6 Betyg
Utvecklare hskolbeck
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://hannah.industries
Stödda Språk 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"
    }
}