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ファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}