Collusion Image Alt Text Viewer

Replace images with their alt attribute text for Debugging or SEO

O que é Collusion Image Alt Text Viewer?

Collusion Image Alt Text Viewer é uma extensão do Chrome desenvolvida por https://collusionapp.com, e sua principal característica é "Replace images with their alt attribute text for Debugging or SEO".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Collusion Image Alt Text Viewer

Baixe arquivos de extensão Collusion Image Alt Text Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome Collusion Image Alt Text Viewer Collusion Image Alt Text Viewer
ID klhaeinjhbihcifafpnanfiobkhfeomk
URL Oficial https://chromewebstore.google.com/detail/collusion-image-alt-text/klhaeinjhbihcifafpnanfiobkhfeomk
Descrição Replace images with their alt attribute text for Debugging or SEO
Tamanho do Arquivo 69.27 KB
Contagem de Instalações 852
Versão Atual 1.0.1
Última Atualização 2016-10-31
Data de Publicação 2016-10-31
Classificação 3.40/5 Total de 5 Avaliações
Desenvolvedor https://collusionapp.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://collusionapp.com
URL da Página de Política de Privacidade https://collusionapp.com/legal
Idiomas Suportados 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
    }
}