Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

What is Collusion Image Alt Text Viewer?

Collusion Image Alt Text Viewer is a Chrome extension developed by https://collusionapp.com, and its main feature is "Replace images with their alt attribute text for Debugging or SEO".

Extension Screenshots

screenshot

Download Collusion Image Alt Text Viewer Extension CRX File

Download Collusion Image Alt Text Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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)                    

Extension Basic Information

Name Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
Official URL https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Description Replace images with their alt attribute text for Debugging or SEO
File Size 69.27 KB
Installation Count 852
Current Version 1.0.1
Last Updated 2016-10-31
Publish Date 2016-10-31
Rating 3.40/5 Total 5 Ratings
Developer https://collusionapp.com
Email [email protected]
Payment Type free
Extension Website https://collusionapp.com
Privacy Policy Page URL https://collusionapp.com/legal
Supported Languages 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
    }
}