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."입니다.

확장 프로그램 스크린샷

screenshot

Query String Values 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Query String Values Query String Values
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
}