CircuitVerse

CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides

Co je CircuitVerse?

CircuitVerse je rozšíření Chrome vyvinuté https://circuitverse.org, a jeho hlavní funkcí je „CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření CircuitVerse

Stáhněte si soubory rozšíření CircuitVerse ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název CircuitVerse CircuitVerse
ID nmmehnggkgmdfbpfnebaimfjdbgmoaoo
Oficiální URL https://chromewebstore.google.com/detail/circuitverse/nmmehnggkgmdfbpfnebaimfjdbgmoaoo
Popis CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides
Velikost souboru 16.74 KB
Počet instalací 107
Aktuální Verze 0.0.1
Poslední Aktualizace 2020-10-25
Datum Vydání 2020-10-24
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář https://circuitverse.org
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://circuitverse.org/
URL Stránky Nápovědy https://docs.circuitverse.org/#/embedding_circuits?id=embedding-in-google-slides
Podporované Jazyky 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"
            ]
        }
    ]
}