Query String Values

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

Query String Valuesคืออะไร?

Query String Values เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://agustincolchado.com และคุณลักษณะหลักของมันคือ "View all of the query string parameters in the current tab's url."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Query String Values

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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
}