Noindex Alerter

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

What is Noindex Alerter?

Noindex Alerter is a Chrome extension developed by https://fruition.net, and its main feature is "Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.".

Extension Screenshots

screenshot

Download Noindex Alerter Extension CRX File

Download Noindex Alerter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Noindex Alerter Noindex Alerter
ID ehbhjonpgdlegenahbadgbpafopcncii
Official URL https://chromewebstore.google.com/detail/noindex-alerter/ehbhjonpgdlegenahbadgbpafopcncii
Description Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.
File Size 14.77 KB
Installation Count 105
Current Version 0.0.3
Last Updated 2020-01-13
Publish Date 2020-01-10
Developer https://fruition.net
Email [email protected]
Payment Type free
Privacy Policy Page URL https://fruition.net/privacy-policy
Supported Languages 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"
    ]
}