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.

Was ist URL Query Decoder?

URL Query Decoder ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.".

Erweiterungsscreenshots

screenshot

URL Query Decoder-Erweiterungs-CRX-Datei herunterladen

Laden Sie URL Query Decoder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name URL Query Decoder URL Query Decoder
ID ejimgebkedeogomfckpbkbmoikpcdnce
Offizielle URL https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce
Beschreibung This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
Dateigröße 270 KB
Installationsanzahl 696
Aktuelle Version 1.0
Letztes Update 2015-04-29
Veröffentlichungsdatum 2015-04-29
Bewertung 4.89/5 Insgesamt 9 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}