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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fruition.net และคุณลักษณะหลักของมันคือ "Alerts you when a site is noindexed via x-robots, meta tag noindex and robots disallow. Built by FRUITION."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Noindex Alerter

ดาวน์โหลดไฟล์ส่วนขยาย Noindex Alerter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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