Immutable.js Object Formatter
Makes Immutable JS objects more readable when they are logged to the console.
Vad är Immutable.js Object Formatter?
Immutable.js Object Formatter är en Chrome-tillägg utvecklad av Matt Zeunert, och dess huvudfunktion är "Makes Immutable JS objects more readable when they are logged to the console.".
Tilläggsskärmbilder
Ladda ner Immutable.js Object Formatter-förlängningens CRX-fil
Ladda ner Immutable.js Object Formatter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | hgldghadipiblonfkkicmgcbbijnpeog |
| Officiell webbadress | https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog |
| Beskrivning | Makes Immutable JS objects more readable when they are logged to the console. |
| Filstorlek | 43.46 KB |
| Antal Installationer | 7,573 |
| Aktuell Version | 1.9.3 |
| Senast Uppdaterad | 2020-04-20 |
| Publiceringsdatum | 2020-04-15 |
| Betyg | 4.91/5 Totalt 33 Betyg |
| Utvecklare | Matt Zeunert |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/mattzeunert/immutable-object-formatter-extension |
| Hjälpsida URL | https://github.com/mattzeunert/immutable-object-formatter-extension/ |
| Stödda Språk | 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"
]
} | |