ProseMirror Developer Tools

Run prosemirror-dev-toolkit as Chrome extension

ProseMirror Developer Tools là gì?

ProseMirror Developer Tools là một tiện ích mở rộng Chrome được phát triển bởi teemukoivisto.xyz, và tính năng chính của nó là "Run prosemirror-dev-toolkit as Chrome extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ProseMirror Developer Tools

Tải xuống các tệp mở rộng ProseMirror Developer Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ProseMirror Developer Tools ProseMirror Developer Tools
ID gkgbmhfgcpfnogoeclbaiencdjkefonj
URL Chính Thức https://chromewebstore.google.com/detail/prosemirror-developer-too/gkgbmhfgcpfnogoeclbaiencdjkefonj
Mô tả Run prosemirror-dev-toolkit as Chrome extension
Kích Thước Tệp 174 KB
Số Lần Cài Đặt 473
Phiên Bản Hiện Tại 1.0.11
Cập Nhật Lần Cuối 2024-01-03
Ngày Phát Hành 2022-12-27
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển teemukoivisto.xyz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/TeemuKoivisto/prosemirror-dev-toolkit
URL Trang Trợ Giúp https://github.com/TeemuKoivisto/prosemirror-dev-toolkit/issues
Ngôn Ngữ Được Hỗ Trợ 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'"
    }
}