Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

Co je Collusion Image Alt Text Viewer?

Collusion Image Alt Text Viewer je rozšíření Chrome vyvinuté https://collusionapp.com, a jeho hlavní funkcí je „Replace images with their alt attribute text for Debugging or SEO“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Collusion Image Alt Text Viewer

Stáhněte si soubory rozšíření Collusion Image Alt Text Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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)                    

Základní Informace o Rozšíření

Název Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
Oficiální URL https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Popis Replace images with their alt attribute text for Debugging or SEO
Velikost souboru 69.27 KB
Počet instalací 852
Aktuální Verze 1.0.1
Poslední Aktualizace 2016-10-31
Datum Vydání 2016-10-31
Hodnocení 3.40/5 Celkem 5 Hodnocení
Vývojář https://collusionapp.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://collusionapp.com
URL Stránky Zásad Ochrany Soukromí https://collusionapp.com/legal
Podporované Jazyky 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
    }
}