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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes Immutable JS objects more readable when they are logged to the console."입니다.

확장 프로그램 스크린샷

screenshot

Immutable.js Object Formatter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}