NoIndex,NoFollow Meta Tag Checker

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

Apa itu NoIndex,NoFollow Meta Tag Checker?

NoIndex,NoFollow Meta Tag Checker adalah ekstensi Chrome yang dikembangkan oleh Richard Parnaby-King, dan fitur utamanya adalah "https://github.com/richard-parnaby-king/Meta-Checker".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi NoIndex,NoFollow Meta Tag Checker

Unduh file ekstensi NoIndex,NoFollow Meta Tag Checker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama NoIndex,NoFollow Meta Tag Checker NoIndex,NoFollow Meta Tag Checker
ID aijcgkcgldkomeddnlpbhdelcpfamklm
URL Resmi https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm
Deskripsi https://github.com/richard-parnaby-king/Meta-Checker
Ukuran File 19.12 KB
Jumlah Instalasi 3,971
Versi Saat Ini 1.1
Terakhir Diperbarui 2017-08-24
Tanggal Publikasi 2017-08-24
Penilaian 3.83/5 Total 12 Penilaian
Pengembang Richard Parnaby-King
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}