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.

Vad är URL Query Decoder?

URL Query Decoder är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.".

Tilläggsskärmbilder

screenshot

Ladda ner URL Query Decoder-förlängningens CRX-fil

Ladda ner URL Query Decoder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn URL Query Decoder URL Query Decoder
ID ejimgebkedeogomfckpbkbmoikpcdnce
Officiell webbadress https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce
Beskrivning This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
Filstorlek 270 KB
Antal Installationer 696
Aktuell Version 1.0
Senast Uppdaterad 2015-04-29
Publiceringsdatum 2015-04-29
Betyg 4.89/5 Totalt 9 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
        ]
    }
}