Query String Values
View all of the query string parameters in the current tab's url.
What is Query String Values?
Query String Values is a Chrome extension developed by https://agustincolchado.com, and its main feature is "View all of the query string parameters in the current tab's url.".
Extension Screenshots
Download Query String Values Extension CRX File
Download Query String Values extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Query String Values |
ID | cjhbheckcgogpgibfjfhkofioikhpgio |
Official URL | https://chromewebstore.google.com/detail/query-string-values/cjhbheckcgogpgibfjfhkofioikhpgio |
Description | View all of the query string parameters in the current tab's url. |
File Size | 16.39 KB |
Installation Count | 1,189 |
Current Version | 0.0.1 |
Last Updated | 2013-07-13 |
Publish Date | 2013-07-13 |
Rating | 3.57/5 Total 7 Ratings |
Developer | https://agustincolchado.com |
Payment Type | free |
Extension Website | https://github.com/acolchado/query-string-values-extension |
Supported Languages | 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 } |