Mermaid Charts
Render mermaid charts on webpages
Cos'è Mermaid Charts?
Mermaid Charts è un'estensione di Chrome sviluppata da acesmndr, e la sua funzione principale è "Render mermaid charts on webpages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mermaid Charts
Scarica i file di estensione Mermaid Charts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Render charts across websites written in markdown files with mermaid syntax.
Full support for
* Github
* Dillinger.io
Currently doesn't support
* Bitbucket
Features:
* Supports Flowchart, Sequence Diagram, ER Diagram, State Diagram, Class Diagram, Pie Chart and Gantt Chart
* Latest version of Mermaid.js (v8.5.1) integrated so has support for the latest mermaid js syntax
* Renders graphs from markdown files only when the extension icon is pressed
* Doesn't allocate memory and run in the background when not required
* Supports github wikis
* Fails silently and logs error to the console when rendering fails Informazioni di Base sull'Estensione
| Nome | |
| ID | hfllniagfgnpdjnamaoloegkepiglblf |
| URL Ufficiale | https://chromewebstore.google.com/detail/mermaid-charts/hfllniagfgnpdjnamaoloegkepiglblf |
| Descrizione | Render mermaid charts on webpages |
| Dimensione del File | 238 KB |
| Conteggio Installazioni | 288 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2021-05-02 |
| Data di Pubblicazione | 2020-05-27 |
| Valutazione | 3.00/5 Totale 1 Valutazioni |
| Sviluppatore | acesmndr |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Acesmndr/mermaid-charts-chrome-extension |
| Lingue Supportate | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Mermaid Charts",
"version": "1.0.0",
"description": "Render mermaid charts on webpages",
"permissions": [
"activeTab"
],
"browser_action": {
"default_title": "Render Mermaid Charts",
"default_icon": "assets\/icons\/icon128.png"
},
"icons": {
"16": "assets\/icons\/icon16.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"background": {
"scripts": [
"assets\/background.js"
],
"persistent": false
}
} | |