Noindex Alerter

Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.

什么是Noindex Alerter?

Noindex Alerter是由https://fruition.net开发的Chrome扩展程序,该扩展的主要功能是“Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.”。

扩展截图

screenshot

下载Noindex Alerter扩展crx文件

下载Noindex Alerter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension provides a Google Chrome Notification if you visit a website that is issuing a noindex directive through an X-Robots-Tag, a robots.txt disallow, and or a meta tag noindex.

This extension uses Chrome Notifications. Some Windows 10 machines have notifications turned off. For this extension to work you have to turn on "Get notifications from apps and other senders" in Settings > Notifications & actions.

You will get positive results for some cdns and some ajax which should be noindexed i.e. a false positive. In some instances cdns incorrectly exclude images.                    

扩展基本信息

名称 Noindex Alerter Noindex Alerter
ID ehbhjonpgdlegenahbadgbpafopcncii
官方URL https://chromewebstore.google.com/detail/noindex-alerter/ehbhjonpgdlegenahbadgbpafopcncii
简介 Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.
文件大小 14.77 KB
安装次数 105
当前版本 0.0.3
更新时间 2020-01-13
上架时间 2020-01-10
开发者 https://fruition.net
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://fruition.net/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Noindex Alerter",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.",
    "homepage_url": "https:\/\/fruition.net",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "",
        "notifications",
        "activeTab"
    ]
}