Classroom Folders
Organizes Your Classes Into Folders
Co to jest Classroom Folders?
Classroom Folders to rozszerzenie Chrome opracowane przez ftwebextender, a jego główną funkcją jest „Organizes Your Classes Into Folders”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Classroom Folders
Pobierz pliki rozszerzeń Classroom Folders w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Classroom Folders |
ID | aapjlnmkiihgclndofgoedpbeiiecejo |
Oficjalny URL | https://chromewebstore.google.com/detail/classroom-folders/aapjlnmkiihgclndofgoedpbeiiecejo |
Opis | Organizes Your Classes Into Folders |
Rozmiar pliku | 69.93 KB |
Liczba instalacji | 873 |
Aktualna Wersja | 1.2.7 |
Ostatnia Aktualizacja | 2022-04-01 |
Data Publikacji | 2020-04-17 |
Ocena | 3.75/5 Łącznie 4 Oceny |
Deweloper | ftwebextender |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://webextends.herokuapp.com/ |
Adres URL Strony Polityki Prywatności | https://pastebin.com/w4s7PFqD |
Obsługiwane Języki | 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" } } |