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 擴展基本資訊
| 名稱 | |
| ID | nmmehnggkgmdfbpfnebaimfjdbgmoaoo |
| 官方網址 | 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 |
| 電子郵箱 | [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"
]
}
]
} | |