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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
    }
}