Google URLS decoder

Decode encoded arabic - and hebrew - urls in Google analytics and Google search console

Google URLS decoder là gì?

Google URLS decoder là một tiện ích mở rộng Chrome được phát triển bởi https://wsnan.com, và tính năng chính của nó là "Decode encoded arabic - and hebrew - urls in Google analytics and Google search console".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google URLS decoder

Tải xuống các tệp mở rộng Google URLS decoder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google URLS decoder Google URLS decoder
ID fccpjkafgoedeodcfoiibmanhjdhhdod
URL Chính Thức https://chromewebstore.google.com/detail/google-urls-decoder/fccpjkafgoedeodcfoiibmanhjdhhdod
Mô tả Decode encoded arabic - and hebrew - urls in Google analytics and Google search console
Kích Thước Tệp 7.94 KB
Số Lần Cài Đặt 269
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2020-10-27
Ngày Phát Hành 2018-03-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://wsnan.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}