Immutable.js Object Formatter
Makes Immutable JS objects more readable when they are logged to the console.
Immutable.js Object Formatter क्या है?
Immutable.js Object Formatter Matt Zeunert द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes Immutable JS objects more readable when they are logged to the console."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Immutable.js Object Formatter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Transforms logged Immutable JS objects into a more readable format. To use the extension you need to "Enable Custom Formatters" in the Chrome DevTools settings. Based on Immutable DevTools: https://github.com/andrewdavey/immutable-devtools Source Code: https://github.com/mattzeunert/immutable-object-formatter-extension
एक्सटेंशन की मूल जानकारी
नाम | Immutable.js Object Formatter |
ID | hgldghadipiblonfkkicmgcbbijnpeog |
आधिकारिक URL | https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog |
विवरण | Makes Immutable JS objects more readable when they are logged to the console. |
फ़ाइल का आकार | 43.46 KB |
स्थापना संख्या | 7,573 |
वर्तमान संस्करण | 1.9.3 |
अंतिम अपडेट | 2020-04-20 |
प्रकाशन तिथि | 2020-04-15 |
रेटिंग | 4.91/5 कुल 33 रेटिंग्स |
डेवलपर | Matt Zeunert |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/mattzeunert/immutable-object-formatter-extension |
सहायता पृष्ठ URL | https://github.com/mattzeunert/immutable-object-formatter-extension/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Immutable.js Object Formatter", "short_name": "Immutable.js Object Formatter", "description": "Makes Immutable JS objects more readable when they are logged to the console.", "version": "1.9.3", "manifest_version": 2, "minimum_chrome_version": "48.0", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_start" } ], "devtools_page": "devtool.html", "permissions": [ "http:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "icons": { "128": "icon-128.png" }, "web_accessible_resources": [ "bundle.js" ] } |