Canonical Url Detector

If the page has Canonical URL, you can click to switch the URL in address bar.

Canonical Url Detectorคืออะไร?

Canonical Url Detector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย irok และคุณลักษณะหลักของมันคือ "If the page has Canonical URL, you can click to switch the URL in address bar."

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

screenshot
screenshot
screenshot

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

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

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

                        The extension icon becomes active when the page has Canonical URL, and click it to change URL in the address bar to Canonical URL without reloading the page. Click again to return to the original URL.
It works in the same way when the URL contains extra parameters.
Please use it, for example, when you share a page.                    

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

ชื่อ Canonical Url Detector Canonical Url Detector
ID dcbmeicnoejpldipejlefojiiebhogij
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/canonical-url-detector/dcbmeicnoejpldipejlefojiiebhogij
คำอธิบาย If the page has Canonical URL, you can click to switch the URL in address bar.
ขนาดไฟล์ 26 KB
จำนวนการติดตั้ง 1,511
เวอร์ชันปัจจุบัน 2.1.3
อัปเดตครั้งล่าสุด 2022-01-12
วันที่เผยแพร่ 2020-06-02
คะแนน 4.33/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา irok
อีเมล [email protected]
เว็บไซต์ส่วนขยาย https://github.com/irok/CanonicalUrlDetector
URL หน้าช่วยเหลือ https://github.com/irok/CanonicalUrlDetector/issues
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canonical Url Detector",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "2.1.3",
    "author": "irok",
    "homepage_url": "https:\/\/github.com\/irok\/CanonicalUrlDetector",
    "icons": {
        "16": "img\/icon-canonical.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "img\/icon-disabled.png"
        },
        "default_title": "Canonical Url Detector"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}