Google URLS decoder
Decode encoded arabic - and hebrew - urls in Google analytics and Google search console
Qu'est-ce que Google URLS decoder ?
Google URLS decoder est une extension Chrome développée par https://wsnan.com, et sa fonction principale est "Decode encoded arabic - and hebrew - urls in Google analytics and Google search console".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google URLS decoder
Téléchargez les fichiers d'extension Google URLS decoder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Google URLS decoder |
ID | fccpjkafgoedeodcfoiibmanhjdhhdod |
URL Officiel | https://chromewebstore.google.com/detail/google-urls-decoder/fccpjkafgoedeodcfoiibmanhjdhhdod |
Description | Decode encoded arabic - and hebrew - urls in Google analytics and Google search console |
Taille du Fichier | 7.94 KB |
Nombre d'Installations | 269 |
Version Actuelle | 0.0.4 |
Dernière Mise à Jour | 2020-10-27 |
Date de Publication | 2018-03-18 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://wsnan.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |