NoIndex,NoFollow Meta Tag Checker

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

Vad är NoIndex,NoFollow Meta Tag Checker?

NoIndex,NoFollow Meta Tag Checker är en Chrome-tillägg utvecklad av Richard Parnaby-King, och dess huvudfunktion är "https://github.com/richard-parnaby-king/Meta-Checker".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner NoIndex,NoFollow Meta Tag Checker-förlängningens CRX-fil

Ladda ner NoIndex,NoFollow Meta Tag Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn NoIndex,NoFollow Meta Tag Checker NoIndex,NoFollow Meta Tag Checker
ID aijcgkcgldkomeddnlpbhdelcpfamklm
Officiell webbadress https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm
Beskrivning https://github.com/richard-parnaby-king/Meta-Checker
Filstorlek 19.12 KB
Antal Installationer 3,971
Aktuell Version 1.1
Senast Uppdaterad 2017-08-24
Publiceringsdatum 2017-08-24
Betyg 3.83/5 Totalt 12 Betyg
Utvecklare Richard Parnaby-King
Betalningssätt free
Stödda Språk 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
    }
}