NoIndex,NoFollow Meta Tag Checker

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

Co to jest NoIndex,NoFollow Meta Tag Checker?

NoIndex,NoFollow Meta Tag Checker to rozszerzenie Chrome opracowane przez Richard Parnaby-King, a jego główną funkcją jest „https://github.com/richard-parnaby-king/Meta-Checker”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia NoIndex,NoFollow Meta Tag Checker

Pobierz pliki rozszerzeń NoIndex,NoFollow Meta Tag Checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa NoIndex,NoFollow Meta Tag Checker NoIndex,NoFollow Meta Tag Checker
ID aijcgkcgldkomeddnlpbhdelcpfamklm
Oficjalny URL https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm
Opis https://github.com/richard-parnaby-king/Meta-Checker
Rozmiar pliku 19.12 KB
Liczba instalacji 3,971
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2017-08-24
Data Publikacji 2017-08-24
Ocena 3.83/5 Łącznie 12 Oceny
Deweloper Richard Parnaby-King
Typ Płatności free
Obsługiwane Języki 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
    }
}