Alt-Tag Overlay

Display an overlay of alt tags overtop images

Qu'est-ce que Alt-Tag Overlay ?

Alt-Tag Overlay est une extension Chrome développée par https://www.jsabo.net, et sa fonction principale est "Display an overlay of alt tags overtop images".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Alt-Tag Overlay

Téléchargez les fichiers d'extension Alt-Tag Overlay au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Alt-Tag Overlay Alt-Tag Overlay
ID hcccpjiloncfhkjolfepfokhjbgboikm
URL Officiel https://chromewebstore.google.com/detail/alt-tag-overlay/hcccpjiloncfhkjolfepfokhjbgboikm
Description Display an overlay of alt tags overtop images
Taille du Fichier 73.1 KB
Nombre d'Installations 1,359
Version Actuelle 0.92
Dernière Mise à Jour 2024-03-01
Date de Publication 2020-04-09
Évaluation 3.60/5 Total 5 Évaluations
Développeur https://www.jsabo.net
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.jsabo.net
Langues Prises en Charge 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"
        }
    ]
}