Google URLS decoder

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

Co je Google URLS decoder?

Google URLS decoder je rozšíření Chrome vyvinuté https://wsnan.com, a jeho hlavní funkcí je „Decode encoded arabic - and hebrew - urls in Google analytics and Google search console“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Google URLS decoder

Stáhněte si soubory rozšíření Google URLS decoder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Google URLS decoder Google URLS decoder
ID fccpjkafgoedeodcfoiibmanhjdhhdod
Oficiální URL https://chromewebstore.google.com/detail/google-urls-decoder/fccpjkafgoedeodcfoiibmanhjdhhdod
Popis Decode encoded arabic - and hebrew - urls in Google analytics and Google search console
Velikost souboru 7.94 KB
Počet instalací 269
Aktuální Verze 0.0.4
Poslední Aktualizace 2020-10-27
Datum Vydání 2018-03-18
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář https://wsnan.com
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}