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文件

下载Dot Lang Viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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