Canonical Url Detector
If the page has Canonical URL, you can click to switch the URL in address bar.
O que é Canonical Url Detector?
Canonical Url Detector é uma extensão do Chrome desenvolvida por irok, e sua principal característica é "If the page has Canonical URL, you can click to switch the URL in address bar.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Canonical Url Detector
Baixe arquivos de extensão Canonical Url Detector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | dcbmeicnoejpldipejlefojiiebhogij |
URL Oficial | https://chrome.google.com/webstore/detail/canonical-url-detector/dcbmeicnoejpldipejlefojiiebhogij |
Descrição | If the page has Canonical URL, you can click to switch the URL in address bar. |
Tamanho do Arquivo | 26 KB |
Contagem de Instalações | 1,511 |
Versão Atual | 2.1.3 |
Última Atualização | 2022-01-12 |
Data de Publicação | 2020-06-02 |
Classificação | 4.33/5 Total de 6 Avaliações |
Desenvolvedor | irok |
[email protected] | |
Site da Extensão | https://github.com/irok/CanonicalUrlDetector |
URL da Página de Ajuda | https://github.com/irok/CanonicalUrlDetector/issues |
Idiomas Suportados | 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" ] } ] } |