NoIndex,NoFollow Meta Tag Checker

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

NoIndex,NoFollow Meta Tag Checkerとは何ですか?

NoIndex,NoFollow Meta Tag CheckerはRichard Parnaby-Kingによって開発されたChromeの拡張機能で、その主な機能は「https://github.com/richard-parnaby-king/Meta-Checker」です。

拡張機能のスクリーンショット

screenshot
screenshot

NoIndex,NoFollow Meta Tag Checker拡張機能のCRXファイルをダウンロード

NoIndex,NoFollow Meta Tag Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 NoIndex,NoFollow Meta Tag Checker NoIndex,NoFollow Meta Tag Checker
ID aijcgkcgldkomeddnlpbhdelcpfamklm
公式URL https://chromewebstore.google.com/detail/noindexnofollow-meta-tag/aijcgkcgldkomeddnlpbhdelcpfamklm
説明 https://github.com/richard-parnaby-king/Meta-Checker
ファイルサイズ 19.12 KB
インストール数 3,971
現在のバージョン 1.1
最終更新日 2017-08-24
公開日 2017-08-24
評価 3.83/5 合計 12 レビュー
開発者 Richard Parnaby-King
支払い方法 free
対応言語 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
    }
}