MobX Developer Tools

Dev-tools for MobX and React

Apa itu MobX Developer Tools?

MobX Developer Tools adalah ekstensi Chrome yang dikembangkan oleh Andy Kogut, dan fitur utamanya adalah "Dev-tools for MobX and React".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi MobX Developer Tools

Unduh file ekstensi MobX Developer Tools dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama MobX Developer Tools MobX Developer Tools
ID pfgnfdagidkfgccljigdamigbcnndkod
URL Resmi https://chromewebstore.google.com/detail/mobx-developer-tools/pfgnfdagidkfgccljigdamigbcnndkod
Deskripsi Dev-tools for MobX and React
Ukuran File 875 KB
Jumlah Instalasi 32,265
Versi Saat Ini 0.9.26
Terakhir Diperbarui 2020-10-30
Tanggal Publikasi 2020-04-24
Penilaian 3.37/5 Total 49 Penilaian
Pengembang Andy Kogut
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/andykog/mobx-devtools
URL Halaman Bantuan https://github.com/andykog/mobx-devtools/issues
Bahasa yang Didukung 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"
}