CircuitVerse

CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides

Was ist CircuitVerse?

CircuitVerse ist eine Chrome-Erweiterung, die von https://circuitverse.org entwickelt wurde, und ihr Hauptmerkmal ist "CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

CircuitVerse-Erweiterungs-CRX-Datei herunterladen

Laden Sie CircuitVerse-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name CircuitVerse CircuitVerse
ID nmmehnggkgmdfbpfnebaimfjdbgmoaoo
Offizielle URL https://chromewebstore.google.com/detail/circuitverse/nmmehnggkgmdfbpfnebaimfjdbgmoaoo
Beschreibung CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides
Dateigröße 16.74 KB
Installationsanzahl 107
Aktuelle Version 0.0.1
Letztes Update 2020-10-25
Veröffentlichungsdatum 2020-10-24
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://circuitverse.org
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://circuitverse.org/
Hilfeseite URL https://docs.circuitverse.org/#/embedding_circuits?id=embedding-in-google-slides
Unterstützte Sprachen 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"
            ]
        }
    ]
}