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.」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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
} | |