URL Query Decoder

This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.

Cos'è URL Query Decoder?

URL Query Decoder è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione URL Query Decoder

Scarica i file di estensione URL Query 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

                        This plugin will parse out the query parameters from a url, decode them, and display them in a popup. You can click the individual buttons to copy a paramter or you can copy portions manually.

Icons from Aha-Soft Team
http://www.aha-soft.com/
Creative Commons License                    

Informazioni di Base sull'Estensione

Nome URL Query Decoder URL Query Decoder
ID ejimgebkedeogomfckpbkbmoikpcdnce
URL Ufficiale https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce
Descrizione This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
Dimensione del File 270 KB
Conteggio Installazioni 696
Versione Corrente 1.0
Ultimo Aggiornamento 2015-04-29
Data di Pubblicazione 2015-04-29
Valutazione 4.89/5 Totale 9 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "URL Query Decoder",
    "description": "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.",
    "version": "1.0",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "page_action": {
        "default_name": "Url Query Decoder",
        "default_icon": "icon_16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "plugin.js"
        ]
    }
}