Marty Developer Tools

Developer tools for Marty

Marty Developer Tools là gì?

Marty Developer Tools là một tiện ích mở rộng Chrome được phát triển bởi jhollingworth, và tính năng chính của nó là "Developer tools for Marty".

Ả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 Marty Developer Tools

Tải xuống các tệp mở rộng Marty Developer Tools 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

                        Marty Developer Tools is an extension to Chrome's developer tools. It shows you the current state of your stores, actions that have flowed through the application as well as allowing you to revert to an earlier state. For each action we will show:

* Which stores handled the action
* What arguments were passed to the stores action handler
* What components re-rendered as a result of the action (and how many)
* Which stores caused a component to re-render                    

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

Tên Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
URL Chính Thức https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
Mô tả Developer tools for Marty
Kích Thước Tệp 2.36 MB
Số Lần Cài Đặt 84
Phiên Bản Hiện Tại 0.10.1
Cập Nhật Lần Cuối 2015-05-27
Ngày Phát Hành 2015-05-27
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển jhollingworth
Loại Thanh Toán free
Trang Web Mở Rộng http://martyjs.org
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Marty Developer Tools",
    "version": "0.10.1",
    "description": "Developer tools for Marty",
    "devtools_page": "app\/devtools\/index.html",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "app\/content\/needle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "app\/*"
    ]
}