Query String Values

View all of the query string parameters in the current tab's url.

什麼是Query String Values?

Query String Values是由https://agustincolchado.com開發的Chrome擴展程式,該擴展的主要功能是“View all of the query string parameters in the current tab's url.”。

擴展截圖

screenshot

下載Query String Values擴展crx文件

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

擴展使用說明

                        Every web developer has to deal with large query strings at times. When debugging parameters passed into a url or just curiosity. I recently had to debug an issue and had to inspect the query string manually many times. I could have used Fiddler or Charles Proxy to see the values in a table form. I could have just copy and paste into notepad, but why leave the browser and deal with another app when I could just simply create an extension to do help me do this quickly.

I created this quick extension to make it so I could see the current tab's query string parameters at a click of a button, right from Chrome.

Please provide feedback or feature requests. You could also contribute to the extension as it's made open source at the GitHub Repo: https://github.com/acolchado/query-string-values-extension                    

擴展基本資訊

名稱 Query String Values Query String Values
ID cjhbheckcgogpgibfjfhkofioikhpgio
官方網址 https://chromewebstore.google.com/detail/query-string-values/cjhbheckcgogpgibfjfhkofioikhpgio
簡介 View all of the query string parameters in the current tab's url.
檔案大小 16.39 KB
安裝次數 1,189
目前版本 0.0.1
更新時間 2013-07-13
上架時間 2013-07-13
評分 3.57/5 共 7 次評分
開發者 https://agustincolchado.com
付費類型 free
擴展官網 https://github.com/acolchado/query-string-values-extension
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Query String Values",
    "browser_action": {
        "default_icon": "img\/icon-128.png",
        "default_title": "Query String Values",
        "default_popup": "popup.html"
    },
    "description": "View all of the query string parameters in the current tab's url.",
    "icons": {
        "16": "img\/icon-16.png",
        "38": "img\/icon-38.png",
        "128": "img\/icon-128.png"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs"
    ],
    "version": "0.0.1",
    "manifest_version": 2
}