Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

Wat is Collusion Image Alt Text Viewer?

Collusion Image Alt Text Viewer is een Chrome-extensie ontwikkeld door https://collusionapp.com, en de belangrijkste functie is "Replace images with their alt attribute text for Debugging or SEO".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Collusion Image Alt Text Viewer

Download Collusion Image Alt Text Viewer-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

                        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)                    

Basisinformatie over de Extensie

Naam Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
Officiële URL https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Beschrijving Replace images with their alt attribute text for Debugging or SEO
Bestandsgrootte 69.27 KB
Aantal Installaties 852
Huidige Versie 1.0.1
Laatst Bijgewerkt 2016-10-31
Publicatiedatum 2016-10-31
Beoordeling 3.40/5 Totaal 5 Beoordelingen
Ontwikkelaar https://collusionapp.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://collusionapp.com
URL van de Privacybeleid Pagina https://collusionapp.com/legal
Ondersteunde Talen 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
    }
}