Chrome Diagrammer
Use code blocks in markdown to render common js graphs
Cos'è Chrome Diagrammer?
Chrome Diagrammer è un'estensione di Chrome sviluppata da jaydoconnor, e la sua funzione principale è "Use code blocks in markdown to render common js graphs".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chrome Diagrammer
Scarica i file di estensione Chrome Diagrammer 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
Allow github code blocks to render mermaid.js and flowchart.js diagrams Informazioni di Base sull'Estensione
| Nome | |
| ID | bkpbgjmkomfoakfklcjeoegkklgjnnpk |
| URL Ufficiale | https://chromewebstore.google.com/detail/chrome-diagrammer/bkpbgjmkomfoakfklcjeoegkklgjnnpk |
| Descrizione | Use code blocks in markdown to render common js graphs |
| Dimensione del File | 437 KB |
| Conteggio Installazioni | 328 |
| Versione Corrente | 0.0.2 |
| Ultimo Aggiornamento | 2019-03-08 |
| Data di Pubblicazione | 2019-03-08 |
| Valutazione | 1.25/5 Totale 4 Valutazioni |
| Sviluppatore | jaydoconnor |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.github.com/jdoconnor/chrome-diagrammer |
| Lingue Supportate | 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"
]
}
]
} | |