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
Eメール [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'"
    }
}