NoIndex,NoFollow Meta Tag Checker

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

¿Qué es NoIndex,NoFollow Meta Tag Checker?

NoIndex,NoFollow Meta Tag Checker es una extensión de Chrome desarrollada por Richard Parnaby-King, y su función principal es "https://github.com/richard-parnaby-king/Meta-Checker".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión NoIndex,NoFollow Meta Tag Checker

Descarga archivos de extensión NoIndex,NoFollow Meta Tag Checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre NoIndex,NoFollow Meta Tag Checker NoIndex,NoFollow Meta Tag Checker
ID aijcgkcgldkomeddnlpbhdelcpfamklm
URL Oficial https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm
Descripción https://github.com/richard-parnaby-king/Meta-Checker
Tamaño del Archivo 19.12 KB
Cantidad de Instalaciones 3,971
Versión Actual 1.1
Última Actualización 2017-08-24
Fecha de Publicación 2017-08-24
Calificación 3.83/5 Total de 12 Calificaciones
Desarrollador Richard Parnaby-King
Tipo de Pago free
Idiomas Soportados 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
    }
}