Noindex Alerter

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

Qu'est-ce que Noindex Alerter ?

Noindex Alerter est une extension Chrome développée par https://fruition.net, et sa fonction principale est "Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Noindex Alerter

Téléchargez les fichiers d'extension Noindex Alerter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Noindex Alerter Noindex Alerter
ID ehbhjonpgdlegenahbadgbpafopcncii
URL Officiel 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.
Taille du Fichier 14.77 KB
Nombre d'Installations 105
Version Actuelle 0.0.3
Dernière Mise à Jour 2020-01-13
Date de Publication 2020-01-10
Développeur https://fruition.net
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://fruition.net/privacy-policy
Langues Prises en Charge 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"
    ]
}