HAR Recorder
Records network request and generates HAR file.
HAR Recorder क्या है?
HAR Recorder nishantmc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Records network request and generates HAR file."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HAR Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
har-recorder Chrome extension to record network request and generates HAR file. Uses https://github.com/cyrus-and/chrome-har-capturer to handle requests.
एक्सटेंशन की मूल जानकारी
नाम | HAR Recorder |
ID | emfabjnfjiknifjlfpjobbecfepplhkd |
आधिकारिक URL | https://chromewebstore.google.com/detail/har-recorder/emfabjnfjiknifjlfpjobbecfepplhkd |
विवरण | Records network request and generates HAR file. |
फ़ाइल का आकार | 22.29 KB |
स्थापना संख्या | 991 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2022-06-07 |
प्रकाशन तिथि | 2021-08-02 |
रेटिंग | 3.00/5 कुल 1 रेटिंग्स |
डेवलपर | nishantmc |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/nishantmc/har-recorder |
सहायता पृष्ठ URL | https://github.com/nishantmc/har-recorder |
गोपनीयता नीति पृष्ठ URL | https://www.privacypolicies.com/live/43ff5382-2a30-42b0-bef8-acaf8899c347 |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HAR Recorder", "description": "Records network request and generates HAR file.", "version": "1.5", "manifest_version": 3, "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": { "16": "icons8-record-16.png", "32": "icons8-record-32.png", "48": "icons8-record-48.png", "64": "icons8-record-64.png", "128": "icons8-record-100.png" } }, "permissions": [ "tabs", "unlimitedStorage", "storage", "debugger", "scripting" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } |