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.

什麼是URL Query Decoder?

URL Query Decoder是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.”。

擴展截圖

screenshot

下載URL Query Decoder擴展crx文件

下載URL Query Decoder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 URL Query Decoder URL Query Decoder
ID ejimgebkedeogomfckpbkbmoikpcdnce
官方網址 https://chromewebstore.google.com/detail/url-query-decoder/ejimgebkedeogomfckpbkbmoikpcdnce
簡介 This extension will break apart the query parameters in the url and decode them. Also allows you to copy them to the clipboard.
檔案大小 270 KB
安裝次數 696
目前版本 1.0
更新時間 2015-04-29
上架時間 2015-04-29
評分 4.89/5 共 9 次評分
開發者 Unknown
付費類型 free
支援的語言 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"
        ]
    }
}