Dot Lang Viewer
Converts and previews 'dot lang' files to PNG image Graph inside Chrome.
Dot Lang Viewerคืออะไร?
Dot Lang Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://twinbird-htn.hatenablog.com และคุณลักษณะหลักของมันคือ "Converts and previews 'dot lang' files to PNG image Graph inside Chrome."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dot Lang Viewer
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |