Google URLS decoder

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

Cos'è Google URLS decoder?

Google URLS decoder è un'estensione di Chrome sviluppata da https://wsnan.com, e la sua funzione principale è "Decode encoded arabic - and hebrew - urls in Google analytics and Google search console".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Google URLS decoder

Scarica i file di estensione Google URLS decoder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Google URLS decoder Google URLS decoder
ID fccpjkafgoedeodcfoiibmanhjdhhdod
URL Ufficiale https://chromewebstore.google.com/detail/google-urls-decoder/fccpjkafgoedeodcfoiibmanhjdhhdod
Descrizione Decode encoded arabic - and hebrew - urls in Google analytics and Google search console
Dimensione del File 7.94 KB
Conteggio Installazioni 269
Versione Corrente 0.0.4
Ultimo Aggiornamento 2020-10-27
Data di Pubblicazione 2018-03-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://wsnan.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}