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
官方URL 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'"
    }
}