WaveDrom
Browser extension that shows WaveDrom diagrams on GitHub page
WaveDrom là gì?
WaveDrom là một tiện ích mở rộng Chrome được phát triển bởi https://wavedrom.com, và tính năng chính của nó là "Browser extension that shows WaveDrom diagrams on GitHub page".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng WaveDrom
Tải xuống các tệp mở rộng WaveDrom dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | WaveDrom |
ID | ckplfgniaofnlpelgjkmbeeilfbbnboi |
URL Chính Thức | https://chromewebstore.google.com/detail/wavedrom/ckplfgniaofnlpelgjkmbeeilfbbnboi |
Mô tả | Browser extension that shows WaveDrom diagrams on GitHub page |
Kích Thước Tệp | 267 KB |
Số Lần Cài Đặt | 255 |
Phiên Bản Hiện Tại | 0.7.0 |
Cập Nhật Lần Cuối | 2022-11-25 |
Ngày Phát Hành | 2020-03-25 |
Nhà Phát Triển | https://wavedrom.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/wavedrom/github |
URL Trang Trợ Giúp | https://github.com/wavedrom/github |
URL Trang Chính Sách Bảo Mật | https://github.com/wavedrom/wavedrom.github.io/blob/master/privacy/chrome-extension.md |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |