CircuitVerse

CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides

CircuitVerse là gì?

CircuitVerse là một tiện ích mở rộng Chrome được phát triển bởi https://circuitverse.org, và tính năng chính của nó là "CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CircuitVerse

Tải xuống các tệp mở rộng CircuitVerse 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CircuitVerse CircuitVerse
ID nmmehnggkgmdfbpfnebaimfjdbgmoaoo
URL Chính Thức https://chromewebstore.google.com/detail/circuitverse/nmmehnggkgmdfbpfnebaimfjdbgmoaoo
Mô tả CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides
Kích Thước Tệp 16.74 KB
Số Lần Cài Đặt 107
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2020-10-25
Ngày Phát Hành 2020-10-24
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://circuitverse.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://circuitverse.org/
URL Trang Trợ Giúp https://docs.circuitverse.org/#/embedding_circuits?id=embedding-in-google-slides
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}