Immutable.js Object Formatter

Makes Immutable JS objects more readable when they are logged to the console.

Immutable.js Object Formatter là gì?

Immutable.js Object Formatter là một tiện ích mở rộng Chrome được phát triển bởi Matt Zeunert, và tính năng chính của nó là "Makes Immutable JS objects more readable when they are logged to the console.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Immutable.js Object Formatter

Tải xuống các tệp mở rộng Immutable.js Object Formatter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Immutable.js Object Formatter Immutable.js Object Formatter
ID hgldghadipiblonfkkicmgcbbijnpeog
URL Chính Thức https://chromewebstore.google.com/detail/immutablejs-object-format/hgldghadipiblonfkkicmgcbbijnpeog
Mô tả Makes Immutable JS objects more readable when they are logged to the console.
Kích Thước Tệp 43.46 KB
Số Lần Cài Đặt 7,573
Phiên Bản Hiện Tại 1.9.3
Cập Nhật Lần Cuối 2020-04-20
Ngày Phát Hành 2020-04-15
Đánh Giá 4.91/5 Tổng số 33 Đánh Giá
Nhà Phát Triển Matt Zeunert
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mattzeunert/immutable-object-formatter-extension
URL Trang Trợ Giúp https://github.com/mattzeunert/immutable-object-formatter-extension/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}