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은(는) irok에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "If the page has Canonical URL, you can click to switch the URL in address bar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Canonical Url Detector 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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