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
官方網址 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"
}