Classroom Folders
Organizes Your Classes Into Folders
Cos'è Classroom Folders?
Classroom Folders è un'estensione di Chrome sviluppata da ftwebextender, e la sua funzione principale è "Organizes Your Classes Into Folders".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Classroom Folders
Scarica i file di estensione Classroom Folders 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
DISCLAIMER: I have not updated this extension in a while - so some features might not work with all operating systems. Classroom Folders is a simple extension unlike any other. This extension allows you to organize and group your Google Classrooms. It also allows you to enable darkmode by clicking the browser icon. This extension is for students and teachers both! PRIVACY POLICY: This extension will never save, collect, or do anything else with your data.
Informazioni di Base sull'Estensione
Nome | Classroom Folders |
ID | aapjlnmkiihgclndofgoedpbeiiecejo |
URL Ufficiale | https://chromewebstore.google.com/detail/classroom-folders/aapjlnmkiihgclndofgoedpbeiiecejo |
Descrizione | Organizes Your Classes Into Folders |
Dimensione del File | 69.93 KB |
Conteggio Installazioni | 873 |
Versione Corrente | 1.2.7 |
Ultimo Aggiornamento | 2022-04-01 |
Data di Pubblicazione | 2020-04-17 |
Valutazione | 3.75/5 Totale 4 Valutazioni |
Sviluppatore | ftwebextender |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://webextends.herokuapp.com/ |
URL della Pagina della Politica sulla Privacy | https://pastebin.com/w4s7PFqD |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Classroom Folders", "version": "1.2.7", "content_scripts": [ { "all_frames": true, "js": [ "classroom.js" ], "matches": [ "*:\/\/classroom.google.com\/u\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Enable Darkmode" }, "description": "Organizes Your Classes Into Folders", "icons": { "128": "128.png", "32": "32.png", "64": "64.png" } } |