CircuitVerse
CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides
Τι είναι το CircuitVerse;
Το CircuitVerse είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://circuitverse.org, και η κύρια λειτουργία του είναι "CircuitVerse Chrome Extension - Embed Live Circuit in Google Slides".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CircuitVerse
Λήψη αρχείων επέκτασης 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"
]
}
]
} | |