Alt-Tag Overlay

Display an overlay of alt tags overtop images

Wat is Alt-Tag Overlay?

Alt-Tag Overlay is een Chrome-extensie ontwikkeld door https://www.jsabo.net, en de belangrijkste functie is "Display an overlay of alt tags overtop images".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Alt-Tag Overlay

Download Alt-Tag Overlay-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

                        Quickly and easily see all alt tags overlaying the photos currently on the webpage you're viewing. As absolute positioning can screw things up, I included an overlay to see outside of the website's own layout.                    

Basisinformatie over de Extensie

Naam Alt-Tag Overlay Alt-Tag Overlay
ID hcccpjiloncfhkjolfepfokhjbgboikm
Officiële URL https://chromewebstore.google.com/detail/alt-tag-overlay/hcccpjiloncfhkjolfepfokhjbgboikm
Beschrijving Display an overlay of alt tags overtop images
Bestandsgrootte 73.1 KB
Aantal Installaties 1,359
Huidige Versie 0.92
Laatst Bijgewerkt 2024-03-01
Publicatiedatum 2020-04-09
Beoordeling 3.60/5 Totaal 5 Beoordelingen
Ontwikkelaar https://www.jsabo.net
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.jsabo.net
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Alt-Tag Overlay",
    "description": "Display an overlay of alt tags overtop images",
    "version": "0.92",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "backend.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Click to Toggle - Alt-Tag Overlay"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.2.1.min.js",
                "thirdParty\/jquery-ui.js",
                "custom.js"
            ],
            "run_at": "document_end"
        }
    ]
}