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 |
| 官方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 |
| 电子邮箱 | [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"
]
}
]
} | |