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.".
Снимки экрана расширения
Скачать файл 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 Основная информация о расширении
| Название | |
| 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
} | |