Query String Values
View all of the query string parameters in the current tab's url.
O que é Query String Values?
Query String Values é uma extensão do Chrome desenvolvida por https://agustincolchado.com, e sua principal característica é "View all of the query string parameters in the current tab's url.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Query String Values
Baixe arquivos de extensão Query String Values no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Query String Values |
ID | cjhbheckcgogpgibfjfhkofioikhpgio |
URL Oficial | https://chromewebstore.google.com/detail/query-string-values/cjhbheckcgogpgibfjfhkofioikhpgio |
Descrição | View all of the query string parameters in the current tab's url. |
Tamanho do Arquivo | 16.39 KB |
Contagem de Instalações | 1,189 |
Versão Atual | 0.0.1 |
Última Atualização | 2013-07-13 |
Data de Publicação | 2013-07-13 |
Classificação | 3.57/5 Total de 7 Avaliações |
Desenvolvedor | https://agustincolchado.com |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/acolchado/query-string-values-extension |
Idiomas Suportados | 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 } |