Meet for Teachers
For educators using Google Meet.
Cos'è Meet for Teachers?
Meet for Teachers è un'estensione di Chrome sviluppata da http://north27.co.uk, e la sua funzione principale è "For educators using Google Meet.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Meet for Teachers
Scarica i file di estensione Meet for Teachers in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
• Toggle (on by default) to "lock meets" and ignore any join requests to mitigate against "meet bombing". When enabled the "N" icon will go green. • At random (about 1 in 20), a popup with safeguarding tips/reminders will appear To contribute with any suggestions please message us at https://www.north27.co.uk
Informazioni di Base sull'Estensione
Nome | |
ID | edbemhpjllbfppjcdkefingohajokaca |
URL Ufficiale | https://chrome.google.com/webstore/detail/meet-for-teachers/edbemhpjllbfppjcdkefingohajokaca |
Descrizione | For educators using Google Meet. |
Dimensione del File | 225 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2021-03-31 |
Data di Pubblicazione | 2020-06-02 |
Valutazione | 2.78/5 Totale 9 Valutazioni |
Sviluppatore | http://north27.co.uk |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://support.north27.co.uk |
URL della Pagina della Politica sulla Privacy | http://north27.co.uk/aet-extension-privacy-policy |
Lingue Supportate | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet for Teachers", "version": "1.4", "description": "For educators using Google Meet.", "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/**-**-**" ], "all_frames": true, "js": [ "scripts\/main.js" ] } ], "permissions": [ "activeTab", "storage", "identity", "identity.email" ], "icons": { "16": "assets\/icons\/n27_icon_16.png", "32": "assets\/icons\/n27_icon_32.png", "48": "assets\/icons\/n27_icon_48.png", "128": "assets\/icons\/n27_icon_128.png" }, "manifest_version": 2, "web_accessible_resources": [ "scripts\/*", "styles\/*" ], "browser_action": { "default_popup": "views\/popup.html", "default_title": "Meet for Teachers" } } |