Dot Lang Viewer
Converts and previews 'dot lang' files to PNG image Graph inside Chrome.
Co to jest Dot Lang Viewer?
Dot Lang Viewer to rozszerzenie Chrome opracowane przez https://twinbird-htn.hatenablog.com, a jego główną funkcją jest „Converts and previews 'dot lang' files to PNG image Graph inside Chrome.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Dot Lang Viewer
Pobierz pliki rozszerzeń Dot Lang Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Dot Lang Viewer |
ID | nbcmnpdcfidmedecbhlbhpoiganlkbio |
Oficjalny URL | https://chromewebstore.google.com/detail/dot-lang-viewer/nbcmnpdcfidmedecbhlbhpoiganlkbio |
Opis | Converts and previews 'dot lang' files to PNG image Graph inside Chrome. |
Rozmiar pliku | 786 KB |
Liczba instalacji | 1,051 |
Aktualna Wersja | 0.7 |
Ostatnia Aktualizacja | 2016-02-26 |
Data Publikacji | 2016-02-26 |
Ocena | 1.40/5 Łącznie 10 Oceny |
Deweloper | https://twinbird-htn.hatenablog.com |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |