NoIndex,NoFollow Meta Tag Checker

https://github.com/richard-parnaby-king/Meta-Checker

O que é NoIndex,NoFollow Meta Tag Checker?

NoIndex,NoFollow Meta Tag Checker é uma extensão do Chrome desenvolvida por Richard Parnaby-King, e sua principal característica é "https://github.com/richard-parnaby-king/Meta-Checker".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão NoIndex,NoFollow Meta Tag Checker

Baixe arquivos de extensão NoIndex,NoFollow Meta Tag Checker 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

                        By default, Googlebot will index a page and follow links to it.

You can use a special HTML  tag to tell robots not to index the content of a page, and/or not scan it for links to follow.

For example:



...



In the majority of cases this is only used on development or staging sites and not used on live websites.

This extension generates a notification if a robots meta tag is found with either "noindex" or "nofollow" in the contents.                    

Informações Básicas da Extensão

Nome NoIndex,NoFollow Meta Tag Checker NoIndex,NoFollow Meta Tag Checker
ID aijcgkcgldkomeddnlpbhdelcpfamklm
URL Oficial https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm
Descrição https://github.com/richard-parnaby-king/Meta-Checker
Tamanho do Arquivo 19.12 KB
Contagem de Instalações 3,971
Versão Atual 1.1
Última Atualização 2017-08-24
Data de Publicação 2017-08-24
Classificação 3.83/5 Total de 12 Avaliações
Desenvolvedor Richard Parnaby-King
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoIndex,NoFollow Meta Tag Checker",
    "description": "https:\/\/github.com\/richard-parnaby-king\/Meta-Checker",
    "version": "1.1",
    "homepage_url": "https:\/\/github.com\/richard-parnaby-king\/External-Followed-Link-Highlighter",
    "author": "Richard Parnaby-King",
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": false
    }
}