WaveDrom
Browser extension that shows WaveDrom diagrams on GitHub page
Qu'est-ce que WaveDrom ?
WaveDrom est une extension Chrome développée par https://wavedrom.com, et sa fonction principale est "Browser extension that shows WaveDrom diagrams on GitHub page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WaveDrom
Téléchargez les fichiers d'extension WaveDrom au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
WaveDrom is a Free and Open Source online digital timing diagram (waveform) rendering engine that uses javascript, HTML5 and SVG to convert a WaveJSON input text description into SVG vector graphics. WaveJSON is an application of the JSON format. The purpose of WaveJSON is to provide a compact exchange format for digital timing diagrams utilized by digital HW / IC engineers.
Informations de Base sur l'Extension
Nom | WaveDrom |
ID | ckplfgniaofnlpelgjkmbeeilfbbnboi |
URL Officiel | https://chromewebstore.google.com/detail/wavedrom/ckplfgniaofnlpelgjkmbeeilfbbnboi |
Description | Browser extension that shows WaveDrom diagrams on GitHub page |
Taille du Fichier | 267 KB |
Nombre d'Installations | 255 |
Version Actuelle | 0.7.0 |
Dernière Mise à Jour | 2022-11-25 |
Date de Publication | 2020-03-25 |
Développeur | https://wavedrom.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/wavedrom/github |
URL de la Page d'Aide | https://github.com/wavedrom/github |
URL de la Page de Politique de Confidentialité | https://github.com/wavedrom/wavedrom.github.io/blob/master/privacy/chrome-extension.md |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WaveDrom", "version": "0.7.0", "description": "Browser extension that shows WaveDrom diagrams on GitHub page", "manifest_version": 2, "homepage_url": "https:\/\/wavedrom.com", "permissions": [ "storage" ], "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "applications": { "gecko": { "id": "{5e76c1cd-894e-42d8-be16-884430d7898a}" } }, "content_scripts": [ { "matches": [ "https:\/\/*.gitlab.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.ieee.org\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "pagenav-listener.js" ], "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } } |