ProseMirror Developer Tools

Run prosemirror-dev-toolkit as Chrome extension

What is ProseMirror Developer Tools?

ProseMirror Developer Tools is a Chrome extension developed by teemukoivisto.xyz, and its main feature is "Run prosemirror-dev-toolkit as Chrome extension".

Extension Screenshots

screenshot

Download ProseMirror Developer Tools Extension CRX File

Download ProseMirror Developer Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ProseMirror Developer Tools ProseMirror Developer Tools
ID gkgbmhfgcpfnogoeclbaiencdjkefonj
Official URL https://chromewebstore.google.com/detail/prosemirror-developer-too/gkgbmhfgcpfnogoeclbaiencdjkefonj
Description Run prosemirror-dev-toolkit as Chrome extension
File Size 174 KB
Installation Count 473
Current Version 1.0.11
Last Updated 2024-01-03
Publish Date 2022-12-27
Rating 5.00/5 Total 2 Ratings
Developer teemukoivisto.xyz
Email [email protected]
Payment Type free
Extension Website https://github.com/TeemuKoivisto/prosemirror-dev-toolkit
Help Page URL https://github.com/TeemuKoivisto/prosemirror-dev-toolkit/issues
Supported Languages 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'"
    }
}