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
电子邮箱 [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"
            ]
        }
    ]
}