Chrome Diagrammer
Use code blocks in markdown to render common js graphs
What is Chrome Diagrammer?
Chrome Diagrammer is a Chrome extension developed by jaydoconnor, and its main feature is "Use code blocks in markdown to render common js graphs".
Extension Screenshots
Download Chrome Diagrammer Extension CRX File
Download Chrome Diagrammer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Allow github code blocks to render mermaid.js and flowchart.js diagrams
Extension Basic Information
Name | Chrome Diagrammer |
ID | bkpbgjmkomfoakfklcjeoegkklgjnnpk |
Official URL | https://chromewebstore.google.com/detail/chrome-diagrammer/bkpbgjmkomfoakfklcjeoegkklgjnnpk |
Description | Use code blocks in markdown to render common js graphs |
File Size | 437 KB |
Installation Count | 328 |
Current Version | 0.0.2 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 1.25/5 Total 4 Ratings |
Developer | jaydoconnor |
[email protected] | |
Payment Type | free |
Extension Website | https://www.github.com/jdoconnor/chrome-diagrammer |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Diagrammer", "version": "0.0.2", "manifest_version": 2, "description": "Use code blocks in markdown to render common js graphs", "homepage_url": "https:\/\/www.github.com\/jdoconnor\/chrome-diagrammer", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/*.github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "js\/raphael\/raphael.js", "js\/flowchart\/flowchart.js", "js\/mermaid\/mermaid.js", "src\/inject\/inject.js" ] } ] } |