Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

Qu'est-ce que Collusion Image Alt Text Viewer ?

Collusion Image Alt Text Viewer est une extension Chrome développée par https://collusionapp.com, et sa fonction principale est "Replace images with their alt attribute text for Debugging or SEO".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Collusion Image Alt Text Viewer

Téléchargez les fichiers d'extension Collusion Image Alt Text Viewer 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

                        Simulates 'Text Only' or rather, not loading images to reveal their alt text attribute to help verify they are set and what they look like for accessibility or SEO.

Works for any website.

Includes options for high contrast colors.

Brought to you by Collusion (https://collusionapp.com)                    

Informations de Base sur l'Extension

Nom Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
URL Officiel https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Description Replace images with their alt attribute text for Debugging or SEO
Taille du Fichier 69.27 KB
Nombre d'Installations 852
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-10-31
Date de Publication 2016-10-31
Évaluation 3.40/5 Total 5 Évaluations
Développeur https://collusionapp.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://collusionapp.com
URL de la Page de Politique de Confidentialité https://collusionapp.com/legal
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Collusion Image Alt Text Viewer",
    "short_name": "AltTextView",
    "description": "Replace images with their alt attribute text for Debugging or SEO",
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "128": "logo_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js",
                "jquery-3.1.1.min.js"
            ],
            "css": [
                "content-style.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "logo_icon_128_green.png",
        "deafult_title": "Collusion Image Alt Text Viewer",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}