Noindex Alerter

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

Cos'è Noindex Alerter?

Noindex Alerter è un'estensione di Chrome sviluppata da https://fruition.net, e la sua funzione principale è "Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Noindex Alerter

Scarica i file di estensione Noindex Alerter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Noindex Alerter Noindex Alerter
ID ehbhjonpgdlegenahbadgbpafopcncii
URL Ufficiale https://chromewebstore.google.com/detail/noindex-alerter/ehbhjonpgdlegenahbadgbpafopcncii
Descrizione Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION.
Dimensione del File 14.77 KB
Conteggio Installazioni 105
Versione Corrente 0.0.3
Ultimo Aggiornamento 2020-01-13
Data di Pubblicazione 2020-01-10
Sviluppatore https://fruition.net
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://fruition.net/privacy-policy
Lingue Supportate 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"
    ]
}