Fulcro Inspect

Fulcro is a development framework that uses React and CLJS. This extension adds ability to track Fulcro DB, transactions and network

什么是Fulcro Inspect?

Fulcro Inspect是由wsscode开发的Chrome扩展程序,该扩展的主要功能是“Fulcro is a development framework that uses React and CLJS. This extension adds ability to track Fulcro DB, transactions and network”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Fulcro Inspect扩展crx文件

下载Fulcro Inspect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Inspect Fulcro apps from your Chrome devtools!                    

扩展基本信息

名称 Fulcro Inspect Fulcro Inspect
ID meeijplnfjcihnhkpanepcaffklobaal
官方URL https://chromewebstore.google.com/detail/fulcro-inspect/meeijplnfjcihnhkpanepcaffklobaal
简介 Fulcro is a development framework that uses React and CLJS. This extension adds ability to track Fulcro DB, transactions and network
文件大小 1.15 MB
安装次数 954
当前版本 3.0.5
更新时间 2021-07-02
上架时间 2020-05-30
评分 5.00/5 共11次评分
开发者 wsscode
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/fulcrologic/fulcro-inspect
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Fulcro is a development framework that uses React and CLJS. This extension adds ability to track Fulcro DB, transactions and network",
    "devtools_page": "devtools.html",
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon-16-disabled.png",
            "32": "icon-32-disabled.png",
            "48": "icon-48-disabled.png",
            "128": "icon-128-disabled.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "name": "Fulcro Inspect",
    "background": {
        "scripts": [
            "out\/shared.js",
            "out\/bg-shared.js",
            "out\/background.js"
        ],
        "persistent": false
    },
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' http:\/\/localhost:9630; connect-src * data: blob: filesystem:; style-src 'self' data: chrome-extension-resource: 'unsafe-inline'; img-src 'self' data: chrome-extension-resource:; frame-src 'self' data: chrome-extension-resource:; font-src 'self' data: chrome-extension-resource:; media-src * data: blob: filesystem:;",
    "content_scripts": [
        {
            "js": [
                "out\/shared.js",
                "out\/bg-shared.js",
                "out\/content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "version": "3.0.5"
}