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 |
公式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 |
Eメール | [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" } } |