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.」です。
拡張機能のスクリーンショット
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 |
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" ] } |