MobX Developer Tools

Dev-tools for MobX and React

What is MobX Developer Tools?

MobX Developer Tools is a Chrome extension developed by Andy Kogut, and its main feature is "Dev-tools for MobX and React".

Extension Screenshots

screenshot

Download MobX Developer Tools Extension CRX File

Download MobX Developer Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Inspect mobx-react observers. Edit values in observable objects (Doesn't support editing react props/state, use react-devtools for that)
Track changes in MobX observables
MST support                    

Extension Basic Information

Name MobX Developer Tools MobX Developer Tools
ID pfgnfdagidkfgccljigdamigbcnndkod
Official URL https://chromewebstore.google.com/detail/mobx-developer-tools/pfgnfdagidkfgccljigdamigbcnndkod
Description Dev-tools for MobX and React
File Size 875 KB
Installation Count 32,265
Current Version 0.9.26
Last Updated 2020-10-30
Publish Date 2020-04-24
Rating 3.37/5 Total 49 Ratings
Developer Andy Kogut
Email [email protected]
Payment Type free
Extension Website https://github.com/andykog/mobx-devtools
Help Page URL https://github.com/andykog/mobx-devtools/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MobX Developer Tools",
    "description": "Dev-tools for MobX and React",
    "minimum_chrome_version": "44",
    "icons": {
        "16": "icons\/Icon-16.png",
        "48": "icons\/Icon-48.png",
        "128": "icons\/Icon-128.png"
    },
    "devtools_page": "panel-loader.html",
    "commands": {
        "open-devtools-window": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "DevTools window to left"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "panel.html",
        "backend.js"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus",
        "storage",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icons\/toolbar-chrome.png",
            "32": "icons\/[email protected]"
        },
        "default_title": "Open"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "injectGlobalHook.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version": "0.9.26",
    "version_name": "0.9.26"
}