Query String Values

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

Query String Values là gì?

Query String Values là một tiện ích mở rộng Chrome được phát triển bởi https://agustincolchado.com, và tính năng chính của nó là "View all of the query string parameters in the current tab's url.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Query String Values

Tải xuống các tệp mở rộng Query String Values dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Query String Values Query String Values
ID cjhbheckcgogpgibfjfhkofioikhpgio
URL Chính Thức https://chromewebstore.google.com/detail/query-string-values/cjhbheckcgogpgibfjfhkofioikhpgio
Mô tả View all of the query string parameters in the current tab's url.
Kích Thước Tệp 16.39 KB
Số Lần Cài Đặt 1,189
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2013-07-13
Ngày Phát Hành 2013-07-13
Đánh Giá 3.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://agustincolchado.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/acolchado/query-string-values-extension
Ngôn Ngữ Được Hỗ Trợ 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
}