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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}