Dot Lang Viewer

Converts and previews 'dot lang' files to PNG image Graph inside Chrome.

Dot Lang Viewer란 무엇입니까?

Dot Lang Viewer은(는) https://twinbird-htn.hatenablog.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts and previews 'dot lang' files to PNG image Graph inside Chrome."입니다.

확장 프로그램 스크린샷

screenshot

Dot Lang Viewer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Automatically parses dot language(Graphviz) files into Graph(PNG image).
This is useful if you're writting 'dot language' and want a quick preview.

What's Graphviz?
https://en.wikipedia.org/wiki/Graphviz

Usage:
1. Install extension from webstore (creates no new UI)
2. Check "Allow access to file URLs" in chrome://extensions listing: 
3. Open local dot-lang(Graphviz) file in Chrome.
   (We recommend File extension the " .viz ")
4. See nicely Graph!

2016/1/10: Add new feature, SVG format Export.                    

확장 프로그램 기본 정보

이름 Dot Lang Viewer Dot Lang Viewer
ID nbcmnpdcfidmedecbhlbhpoiganlkbio
공식 URL https://chromewebstore.google.com/detail/dot-lang-viewer/nbcmnpdcfidmedecbhlbhpoiganlkbio
설명 Converts and previews 'dot lang' files to PNG image Graph inside Chrome.
파일 크기 786 KB
설치 횟수 1,051
현재 버전 0.7
최근 업데이트 2016-02-26
출시 날짜 2016-02-26
평점 1.40/5 총 10 개의 평점
개발자 https://twinbird-htn.hatenablog.com
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.7",
    "icons": {
        "16": "icon\/16icon.png",
        "48": "icon\/48icon.png",
        "128": "icon\/128icon.png"
    },
    "browser_action": {
        "default_icon": "icon\/badge.png",
        "default_title": "Dot Lang Viewer",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*"
            ],
            "js": [
                "js\/viz.js",
                "js\/jquery-2.1.4.min.js",
                "js\/content_scripts.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "file:\/\/*\/*",
        "storage",
        "downloads"
    ]
}