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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View all of the query string parameters in the current tab's url."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Query String Values एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 } |