Marty Developer Tools

Developer tools for Marty

什麼是Marty Developer Tools?

Marty Developer Tools是由jhollingworth開發的Chrome擴展程式,該擴展的主要功能是“Developer tools for Marty”。

擴展截圖

screenshot

下載Marty Developer Tools擴展crx文件

下載Marty Developer Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Marty Developer Tools Marty Developer Tools
ID fifcikknnbggajppebgolpkaambnkpae
官方網址 https://chromewebstore.google.com/detail/marty-developer-tools/fifcikknnbggajppebgolpkaambnkpae
簡介 Developer tools for Marty
檔案大小 2.36 MB
安裝次數 84
目前版本 0.10.1
更新時間 2015-05-27
上架時間 2015-05-27
評分 5.00/5 共 3 次評分
開發者 jhollingworth
付費類型 free
擴展官網 http://martyjs.org
支援的語言 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\/*"
    ]
}