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開發的Chrome擴展程式,該擴展的主要功能是“Decode encoded arabic - and hebrew - urls in Google analytics and Google search console”。
擴展截圖
下載Google URLS decoder擴展crx文件
下載Google URLS decoder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |