Canonical Url Detector
If the page has Canonical URL, you can click to switch the URL in address bar.
Co je Canonical Url Detector?
Canonical Url Detector je rozšíření Chrome vyvinuté irok, a jeho hlavní funkcí je „If the page has Canonical URL, you can click to switch the URL in address bar.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Canonical Url Detector
Stáhněte si soubory rozšíření Canonical Url Detector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | dcbmeicnoejpldipejlefojiiebhogij |
Oficiální URL | https://chrome.google.com/webstore/detail/canonical-url-detector/dcbmeicnoejpldipejlefojiiebhogij |
Popis | If the page has Canonical URL, you can click to switch the URL in address bar. |
Velikost souboru | 26 KB |
Počet instalací | 1,511 |
Aktuální Verze | 2.1.3 |
Poslední Aktualizace | 2022-01-12 |
Datum Vydání | 2020-06-02 |
Hodnocení | 4.33/5 Celkem 6 Hodnocení |
Vývojář | irok |
[email protected] | |
Webové stránky Rozšíření | https://github.com/irok/CanonicalUrlDetector |
URL Stránky Nápovědy | https://github.com/irok/CanonicalUrlDetector/issues |
Podporované Jazyky | 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" ] } ] } |