Google URLS decoder
Decode encoded arabic - and hebrew - urls in Google analytics and Google search console
ما هو Google URLS decoder؟
Google URLS decoder هو إضافة Chrome تم تطويرها بواسطة https://wsnan.com، والميزة الرئيسية لها هي "Decode encoded arabic - and hebrew - urls in Google analytics and Google search console".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google URLS decoder
قم بتنزيل ملفات الامتداد Google URLS decoder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } |