CircuitVerse

CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides

What is CircuitVerse?

CircuitVerse is a Chrome extension developed by https://circuitverse.org, and its main feature is "CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides".

Extension Screenshots

screenshot
screenshot
screenshot

Download CircuitVerse Extension CRX File

Download CircuitVerse extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name CircuitVerse CircuitVerse
ID nmmehnggkgmdfbpfnebaimfjdbgmoaoo
Official URL https://chromewebstore.google.com/detail/circuitverse/nmmehnggkgmdfbpfnebaimfjdbgmoaoo
Description CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides
File Size 16.74 KB
Installation Count 107
Current Version 0.0.1
Last Updated 2020-10-25
Publish Date 2020-10-24
Rating 5.00/5 Total 3 Ratings
Developer https://circuitverse.org
Email [email protected]
Payment Type free
Extension Website http://circuitverse.org/
Help Page URL https://docs.circuitverse.org/#/embedding_circuits?id=embedding-in-google-slides
Supported Languages 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"
            ]
        }
    ]
}