Network explorer
A DevTools extension to interpret network requests in real time within a friendly way.
Network explorer क्या है?
Network explorer jacob.lea.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A DevTools extension to interpret network requests in real time within a friendly way."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Network explorer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A DevTools extension to interpret network requests in real time within a friendly way. Main functions: 1. Network requests could be manually / automatically loaded into the extension. 2. Users could define custom filters to load requests they want. 3. It could display these requests in a table. 4. It could transform headers and contents of requests/responses into JSON object and display them as tree-like structures. Currently version only supports pure JSON requests and dwr request. 5. In these tree-like structures, users could copy, download and search nodes. 6. Jsonlizable strings could be detected automatically and show up in popups.
एक्सटेंशन की मूल जानकारी
नाम | Network explorer |
ID | ejdnjekdoemmcaaaoofkijikbmcfpgfn |
आधिकारिक URL | https://chromewebstore.google.com/detail/network-explorer/ejdnjekdoemmcaaaoofkijikbmcfpgfn |
विवरण | A DevTools extension to interpret network requests in real time within a friendly way. |
फ़ाइल का आकार | 223 KB |
स्थापना संख्या | 203 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2022-04-04 |
प्रकाशन तिथि | 2021-05-05 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | jacob.lea.dev |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "version": "2.0.0", "default_locale": "en", "description": "__MSG_extDescription__", "minimum_chrome_version": "88.0", "icons": { "16": ".\/logos\/16.png", "32": ".\/logos\/32.png", "64": ".\/logos\/64.png", "128": ".\/logos\/128.png" }, "permissions": [ "clipboardWrite", "storage", "tabs" ], "background": { "service_worker": "js\/background.js" }, "devtools_page": "devtools\/startup.html", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "sandbox": { "pages": [ "sandbox\/eval.html" ] } } |