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.

O que é URL Query Decoder?

URL Query Decoder é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão URL Query Decoder

Baixe arquivos de extensão URL Query Decoder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome URL Query Decoder URL Query Decoder
ID ejimgebkedeogomfckpbkbmoikpcdnce
URL Oficial https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce
Descrição This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
Tamanho do Arquivo 270 KB
Contagem de Instalações 696
Versão Atual 1.0
Última Atualização 2015-04-29
Data de Publicação 2015-04-29
Classificação 4.89/5 Total de 9 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados 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"
        ]
    }
}