Dot Lang Viewer
Converts and previews 'dot lang' files to PNG image Graph inside Chrome.
Dot Lang Viewer là gì?
Dot Lang Viewer là một tiện ích mở rộng Chrome được phát triển bởi https://twinbird-htn.hatenablog.com, và tính năng chính của nó là "Converts and previews 'dot lang' files to PNG image Graph inside Chrome.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Dot Lang Viewer
Tải xuống các tệp mở rộng Dot Lang Viewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Dot Lang Viewer |
ID | nbcmnpdcfidmedecbhlbhpoiganlkbio |
URL Chính Thức | https://chromewebstore.google.com/detail/dot-lang-viewer/nbcmnpdcfidmedecbhlbhpoiganlkbio |
Mô tả | Converts and previews 'dot lang' files to PNG image Graph inside Chrome. |
Kích Thước Tệp | 786 KB |
Số Lần Cài Đặt | 1,051 |
Phiên Bản Hiện Tại | 0.7 |
Cập Nhật Lần Cuối | 2016-02-26 |
Ngày Phát Hành | 2016-02-26 |
Đánh Giá | 1.40/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | https://twinbird-htn.hatenablog.com |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |