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 - это расширение Chrome, разработанное Matt Zeunert, и его основная функция - "Makes Immutable JS objects more readable when they are logged to the console.".
Снимки экрана расширения
Скачать файл CRX расширения Immutable.js Object Formatter
Скачайте файлы расширений Immutable.js Object Formatter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } |