WaveDrom
Browser extension that shows WaveDrom diagrams on GitHub page
什么是WaveDrom?
WaveDrom是由https://wavedrom.com开发的Chrome扩展程序,该扩展的主要功能是“Browser extension that shows WaveDrom diagrams on GitHub page”。
扩展截图
下载WaveDrom扩展crx文件
下载WaveDrom扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | ckplfgniaofnlpelgjkmbeeilfbbnboi |
| 官方URL | https://chromewebstore.google.com/detail/wavedrom/ckplfgniaofnlpelgjkmbeeilfbbnboi |
| 简介 | Browser extension that shows WaveDrom diagrams on GitHub page |
| 文件大小 | 267 KB |
| 安装次数 | 255 |
| 当前版本 | 0.7.0 |
| 更新时间 | 2022-11-25 |
| 上架时间 | 2020-03-25 |
| 开发者 | https://wavedrom.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/wavedrom/github |
| 帮助页面URL | https://github.com/wavedrom/github |
| 隐私政策页面URL | https://github.com/wavedrom/wavedrom.github.io/blob/master/privacy/chrome-extension.md |
| 支持的语言 | 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"
}
} | |