SEO-HTML

This extension is to inspect the HTML source of a website and to display SEO relevant information.

O que é SEO-HTML?

SEO-HTML é uma extensão do Chrome desenvolvida por Daniel Lucks, e sua principal característica é "This extension is to inspect the HTML source of a website and to display SEO relevant information.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão SEO-HTML

Baixe arquivos de extensão SEO-HTML 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

                        This extension is to analyze the HTML source code (without DOM modifications done by Javascript) of a website and to display SEO relevant information. I know, there are many extension available like this, but I think the advantage of this one is to display the important information compact in a quick an easy way. Just click the icon, and a little popup shows up.

This is just a first version of this extension, so feedback is very welcome!

Icon by http://designmodo.com                    

Informações Básicas da Extensão

Nome SEO-HTML SEO-HTML
ID lgjdkielngenkbnfmioemjcldnhlcpkn
URL Oficial https://chromewebstore.google.com/detail/seo-html/lgjdkielngenkbnfmioemjcldnhlcpkn
Descrição This extension is to inspect the HTML source of a website and to display SEO relevant information.
Tamanho do Arquivo 16.92 KB
Contagem de Instalações 2,742
Versão Atual 0.3.2
Última Atualização 2014-01-06
Data de Publicação 2014-01-06
Classificação 4.00/5 Total de 10 Avaliações
Desenvolvedor Daniel Lucks
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SEO-HTML",
    "description": "This extension is to inspect the HTML source of a website and to display SEO relevant information.",
    "short_name": "SEO-HTML",
    "version": "0.3.2",
    "author": "Daniel Lucks",
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon-24.png",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}