CircuitVerse
CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides
CircuitVerseとは何ですか?
CircuitVerseはhttps://circuitverse.orgによって開発されたChromeの拡張機能で、その主な機能は「CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides」です。
拡張機能のスクリーンショット
CircuitVerse拡張機能のCRXファイルをダウンロード
CircuitVerse拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will allow embedding of live CircuitVerse circuits in a Google Slides presentation. This will enable educators to teach by interacting with the circuit without leaving the presentation. For more details check the user documentation: https://docs.circuitverse.org/#/embedding_circuits?id=embedding-in-google-slides
拡張機能の基本情報
名前 | CircuitVerse |
ID | nmmehnggkgmdfbpfnebaimfjdbgmoaoo |
公式URL | https://chromewebstore.google.com/detail/circuitverse/nmmehnggkgmdfbpfnebaimfjdbgmoaoo |
説明 | CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides |
ファイルサイズ | 16.74 KB |
インストール数 | 107 |
現在のバージョン | 0.0.1 |
最終更新日 | 2020-10-25 |
公開日 | 2020-10-24 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | https://circuitverse.org |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://circuitverse.org/ |
ヘルプページのURL | https://docs.circuitverse.org/#/embedding_circuits?id=embedding-in-google-slides |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CircuitVerse", "version": "0.0.1", "manifest_version": 2, "description": "CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides", "homepage_url": "https:\/\/circuitverse.org", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon32.png", "default_title": "Embed CircuitVerse Live Circuit", "default_popup": "views\/browser_action.html" }, "default_locale": "en", "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "permissions": [ "https:\/\/docs.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |