Github Sequence Diagrams

Allows sequence diagrams to be embedded inside of Github issues. Based on http://bramp.github.io/js-sequence-diagrams/.

Github Sequence Diagrams란 무엇입니까?

Github Sequence Diagrams은(는) Rudi de Sousa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows sequence diagrams to be embedded inside of Github issues. Based on http://bramp.github.io/js-sequence-diagrams/."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Github Sequence Diagrams 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        *** Update 0.0.3 ***

New theme options added by @jharmn, you can now select hand or simple theme.

This extension will allow you to add sequence diagrams into your Github issues seamlessly.

It is based on the amazing library created by Andrew Brampton which can be found at http://bramp.github.io/js-sequence-diagrams/.

To get to grips with the syntax of the sequence diagrams please visit Andrew's page listed above.

Getting Started:

The only thing you need to do in order to embed a sequence diagram into a Github issue is to surround the JS Sequence Diagram syntax inside a fenced code block and specifying the language of the code block as "jsseq" as per Github Flavoured Markdown.

Example:

```jsseq
A->B: Message1
B->A: Message2
B-->>C: Message 3
C-->>A: Message 4
```                    

확장 프로그램 기본 정보

이름 Github Sequence Diagrams Github Sequence Diagrams
ID okomebddpkofkggafolekknmhookbkcf
공식 URL https://chromewebstore.google.com/detail/github-sequence-diagrams/okomebddpkofkggafolekknmhookbkcf
설명 Allows sequence diagrams to be embedded inside of Github issues. Based on http://bramp.github.io/js-sequence-diagrams/.
파일 크기 121 KB
설치 횟수 648
현재 버전 0.0.3
최근 업데이트 2016-10-15
출시 날짜 2016-10-15
평점 2.60/5 총 5 개의 평점
개발자 Rudi de Sousa
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Sequence Diagrams",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Allows sequence diagrams to be embedded inside of Github issues.  Based on http:\/\/bramp.github.io\/js-sequence-diagrams\/.",
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*\/*\/issues\/*",
                "*:\/\/*.github.com\/*\/*\/pulls\/*"
            ],
            "css": [
                "css\/jsseq.css"
            ],
            "js": [
                "js\/libs\/mutation_summary.js",
                "js\/libs\/raphael-min.js",
                "js\/libs\/underscore-min.js",
                "js\/libs\/sequence-diagram-min.js",
                "js\/libs\/jquery-2.0.3.min.js",
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}