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 |
| Eメール | [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"
}
} | |