Pegmatite

Shows graphs and diagrams rendered by PlantUML.

Pegmatite란 무엇입니까?

Pegmatite은(는) 都元ダイスケ (Daisuke)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows graphs and diagrams rendered by PlantUML."입니다.

확장 프로그램 스크린샷

screenshot

Pegmatite 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Pegmatite is Google Chrome extension that replace PlantUML code blocks into preview images.                    

확장 프로그램 기본 정보

이름 Pegmatite Pegmatite
ID jegkfbnfbfnohncpcfcimepibmhlkldo
공식 URL https://chromewebstore.google.com/detail/pegmatite/jegkfbnfbfnohncpcfcimepibmhlkldo
설명 Shows graphs and diagrams rendered by PlantUML.
파일 크기 21.96 KB
설치 횟수 2,913
현재 버전 1.6.0
최근 업데이트 2020-01-05
출시 날짜 2020-01-03
평점 4.00/5 총 6 개의 평점
개발자 都元ダイスケ (Daisuke)
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dai0304/pegmatite
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pegmatite",
    "version": "1.6.0",
    "description": "Shows graphs and diagrams rendered by PlantUML.",
    "permissions": [
        "storage",
        "https:\/\/*\/*",
        "tabs"
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "rawdeflate.js",
                "content-script.js"
            ],
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*",
                "https:\/\/gitpitch.com\/*",
                "https:\/\/gitlab.com\/*",
                "https:\/\/bitbucket.org\/*",
                "https:\/\/*.backlog.jp\/wiki\/*"
            ]
        }
    ]
}