ProseMirror Developer Tools

Run prosemirror-dev-toolkit as Chrome extension

ProseMirror Developer Toolsคืออะไร?

ProseMirror Developer Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย teemukoivisto.xyz และคุณลักษณะหลักของมันคือ "Run prosemirror-dev-toolkit as Chrome extension"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ProseMirror Developer Tools

ดาวน์โหลดไฟล์ส่วนขยาย 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'"
    }
}