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 to jest URL Query Decoder?

URL Query Decoder to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia URL Query Decoder

Pobierz pliki rozszerzeń URL Query Decoder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa URL Query Decoder URL Query Decoder
ID ejimgebkedeogomfckpbkbmoikpcdnce
Oficjalny URL https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce
Opis This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
Rozmiar pliku 270 KB
Liczba instalacji 696
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-04-29
Data Publikacji 2015-04-29
Ocena 4.89/5 Łącznie 9 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}