ProseMirror Developer Tools

Run prosemirror-dev-toolkit as Chrome extension

什麼是ProseMirror Developer Tools?

ProseMirror Developer Tools是由teemukoivisto.xyz開發的Chrome擴展程式,該擴展的主要功能是“Run prosemirror-dev-toolkit as Chrome extension”。

擴展截圖

screenshot

下載ProseMirror Developer Tools擴展crx文件

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

擴展使用說明

                        Inspect and debug any ProseMirror rich-text editor from your browser without having to bundle prosemirror-dev-toolkit https://github.com/TeemuKoivisto/prosemirror-dev-toolkit

Created in the spirit of React and Redux DevTools. Report any issues or bugs to the GitHub repository.                    

擴展基本資訊

名稱 ProseMirror Developer Tools ProseMirror Developer Tools
ID gkgbmhfgcpfnogoeclbaiencdjkefonj
官方網址 https://chromewebstore.google.com/detail/prosemirror-developer-too/gkgbmhfgcpfnogoeclbaiencdjkefonj
簡介 Run prosemirror-dev-toolkit as Chrome extension
檔案大小 174 KB
安裝次數 473
目前版本 1.0.11
更新時間 2024-01-03
上架時間 2022-12-27
評分 5.00/5 共 2 次評分
開發者 teemukoivisto.xyz
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/TeemuKoivisto/prosemirror-dev-toolkit
說明頁面URL https://github.com/TeemuKoivisto/prosemirror-dev-toolkit/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ProseMirror Developer Tools",
    "version": "1.0.11",
    "description": "Run prosemirror-dev-toolkit as Chrome extension",
    "minimum_chrome_version": "102",
    "homepage_url": "https:\/\/github.com\/TeemuKoivisto\/prosemirror-dev-toolkit",
    "icons": {
        "16": "devtools-16.png",
        "32": "devtools-32.png",
        "48": "devtools-48.png",
        "128": "devtools-128.png"
    },
    "action": {
        "default_popup": "pop-up.html",
        "default_icon": "devtools-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "pop-up.js",
                "proxy.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "background": {
        "service_worker": "sw.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}