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.

Co je URL Query Decoder?

URL Query Decoder je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření URL Query Decoder

Stáhněte si soubory rozšíření URL Query 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í

                        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                    

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

Název URL Query Decoder URL Query Decoder
ID ejimgebkedeogomfckpbkbmoikpcdnce
Oficiální URL https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce
Popis This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
Velikost souboru 270 KB
Počet instalací 696
Aktuální Verze 1.0
Poslední Aktualizace 2015-04-29
Datum Vydání 2015-04-29
Hodnocení 4.89/5 Celkem 9 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
        ]
    }
}