Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

Hvad er Collusion Image Alt Text Viewer?

Collusion Image Alt Text Viewer er en Chrome-udvidelse udviklet af https://collusionapp.com, og dens hovedfunktion er "Replace images with their alt attribute text for Debugging or SEO".

Udvidelsesskærmbilleder

screenshot

Download Collusion Image Alt Text Viewer-udvidelses-CRX-fil

Download Collusion Image Alt Text Viewer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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)                    

Grundlæggende oplysninger om udvidelsen

Navn Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
Officiel URL https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Beskrivelse Replace images with their alt attribute text for Debugging or SEO
Filstørrelse 69.27 KB
Antal Installationer 852
Nuværende Version 1.0.1
Senest Opdateret 2016-10-31
Udgivelsesdato 2016-10-31
Bedømmelse 3.40/5 Samlet 5 Bedømmelser
Udvikler https://collusionapp.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://collusionapp.com
URL til Fortrolighedspolitik Side https://collusionapp.com/legal
Understøttede Sprog 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
    }
}