Noindex Alerter

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

Wat is Noindex Alerter?

Noindex Alerter is een Chrome-extensie ontwikkeld door https://fruition.net, en de belangrijkste functie is "Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Noindex Alerter

Download Noindex Alerter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Noindex Alerter Noindex Alerter
ID ehbhjonpgdlegenahbadgbpafopcncii
Officiële URL https://chromewebstore.google.com/detail/noindex-alerter/ehbhjonpgdlegenahbadgbpafopcncii
Beschrijving Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.
Bestandsgrootte 14.77 KB
Aantal Installaties 105
Huidige Versie 0.0.3
Laatst Bijgewerkt 2020-01-13
Publicatiedatum 2020-01-10
Ontwikkelaar https://fruition.net
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://fruition.net/privacy-policy
Ondersteunde Talen 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"
    ]
}