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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "If the page has Canonical URL, you can click to switch the URL in address bar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Canonical Url Detector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } ] } |