Google URLS decoder
Decode encoded arabic - and hebrew - urls in Google analytics and Google search console
Google URLS decoder क्या है?
Google URLS decoder https://wsnan.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Decode encoded arabic - and hebrew - urls in Google analytics and Google search console"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google URLS decoder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
If your website links are in Arabic or Hebrew then when you try to see them in Google analytics or Google search console you will see the encoded version which is not-readable by humans. This extension allows you to decode these URLS so they are in their original format and readable again. You can decode them by either using a keyboard shortcut (CTRL + SHIFT + ALT + D), or by clicking on the decode URLS context menu link, or by clicking on decode URLS from the plugin icon at the top.
एक्सटेंशन की मूल जानकारी
नाम | Google URLS decoder |
ID | fccpjkafgoedeodcfoiibmanhjdhhdod |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-urls-decoder/fccpjkafgoedeodcfoiibmanhjdhhdod |
विवरण | Decode encoded arabic - and hebrew - urls in Google analytics and Google search console |
फ़ाइल का आकार | 7.94 KB |
स्थापना संख्या | 269 |
वर्तमान संस्करण | 0.0.4 |
अंतिम अपडेट | 2020-10-27 |
प्रकाशन तिथि | 2018-03-18 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://wsnan.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google URLS decoder", "short_name": "URLS decoder", "description": "Decode encoded arabic - and hebrew - urls in Google analytics and Google search console", "version": "0.0.4", "author": "Ehab Alsharif", "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/analytics.google.com\/*", "https:\/\/www.google.com\/webmasters\/tools\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "contextMenus" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |