Immutable.js Object Formatter
Makes Immutable JS objects more readable when they are logged to the console.
O que é Immutable.js Object Formatter?
Immutable.js Object Formatter é uma extensão do Chrome desenvolvida por Matt Zeunert, e sua principal característica é "Makes Immutable JS objects more readable when they are logged to the console.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Immutable.js Object Formatter
Baixe arquivos de extensão Immutable.js Object Formatter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Immutable.js Object Formatter |
ID | hgldghadipiblonfkkicmgcbbijnpeog |
URL Oficial | https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog |
Descrição | Makes Immutable JS objects more readable when they are logged to the console. |
Tamanho do Arquivo | 43.46 KB |
Contagem de Instalações | 7,573 |
Versão Atual | 1.9.3 |
Última Atualização | 2020-04-20 |
Data de Publicação | 2020-04-15 |
Classificação | 4.91/5 Total de 33 Avaliações |
Desenvolvedor | Matt Zeunert |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mattzeunert/immutable-object-formatter-extension |
URL da Página de Ajuda | https://github.com/mattzeunert/immutable-object-formatter-extension/ |
Idiomas Suportados | 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" ] } |