Inspect Canonical

Easily check the canonical tag of a page

Inspect Canonicalคืออะไร?

Inspect Canonical เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://nickleroy.com และคุณลักษณะหลักของมันคือ "Easily check the canonical tag of a page"

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

screenshot
screenshot
screenshot

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

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

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

                        A lightweight and extremely easy Chrome extension that tells you the canonical source of any URL you are on.  No more combing through the source code to understand if/when canonical tags point to a new destination. This extension does all the heavy lifting for you.

This extension will display one of three values. GREEN (self canonical) AMBER (Canonicalized) or RED (error)


Below are the conditions Inspect Canonical tests for, in the order it tests for them:
 
RED:
1. Page contains noindex robots meta
Message: "Page contains robots 'noindex' tag. Canonical tags are ignored. Click to view source"
 
2. No canonical in head but there is one elsewhere
Message: "Canonical tag exists but not in . Click to view source"
 
3. No canonical tag at all
Message: "Page has no canonical tag. Click to view source"
 
4. More than one canonical tag on page
Message: "Multiple ([X]) canonical tags found. Click to view source"
 
5. Canonical exists but is missing the href attribute
Message: "Canonical tag is missing 'href' attribute. Click to view source" - This is an unlikely case but still something I wanted to check for
 
AMBER:
6. Canonical present but differs to current URL
Message: "Canonical tag points to another URL. Click to visit URL: [URL]"
 
GREEN:
7. Canonical is present and correct
Message: "Canonical tag points to current URL. Click to view source"
 
So that's 7 hurdles to jump through to get a green status.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Inspect Canonical Inspect Canonical
ID glkngfenfpegejlggjfcmdobodjlfann
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/inspect-canonical/glkngfenfpegejlggjfcmdobodjlfann
คำอธิบาย Easily check the canonical tag of a page
ขนาดไฟล์ 28.81 KB
จำนวนการติดตั้ง 5,855
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2022-11-30
วันที่เผยแพร่ 2019-03-29
คะแนน 4.40/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา https://nickleroy.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Inspect Canonical",
    "version": "1.0",
    "description": "Easily check the canonical tag of a page",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128_default.png"
    },
    "browser_action": {
        "default_title": "Inspect Canonical"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}