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
Βασικές Πληροφορίες Επέκτασης
Όνομα | 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 } |