Alt-Tag Overlay

Display an overlay of alt tags overtop images

Cos'è Alt-Tag Overlay?

Alt-Tag Overlay è un'estensione di Chrome sviluppata da https://www.jsabo.net, e la sua funzione principale è "Display an overlay of alt tags overtop images".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Alt-Tag Overlay

Scarica i file di estensione Alt-Tag Overlay in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Alt-Tag Overlay Alt-Tag Overlay
ID hcccpjiloncfhkjolfepfokhjbgboikm
URL Ufficiale https://chromewebstore.google.com/detail/alt-tag-overlay/hcccpjiloncfhkjolfepfokhjbgboikm
Descrizione Display an overlay of alt tags overtop images
Dimensione del File 73.1 KB
Conteggio Installazioni 1,359
Versione Corrente 0.92
Ultimo Aggiornamento 2024-03-01
Data di Pubblicazione 2020-04-09
Valutazione 3.60/5 Totale 5 Valutazioni
Sviluppatore https://www.jsabo.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://www.jsabo.net
Lingue Supportate 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"
        }
    ]
}