Classroom Plus
Create your own assignments on Google Classroom.
Co to jest Classroom Plus?
Classroom Plus to rozszerzenie Chrome opracowane przez Sidr, a jego główną funkcją jest „Create your own assignments on Google Classroom.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Classroom Plus
Pobierz pliki rozszerzeń Classroom Plus 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
Classroom Plus is any student's dream. Having six different to-do lists can get annoying, and having all your stuff in the same place can make things a whole lot easier. Classroom Plus makes this possible by turning your Google Classroom to-do page into a personalized to-do list. To add an assignment, simply click the extension icon in the top right-hand corner of the window, enter in a title and a due date, and click "Create assignment." Reload the page, and your assignment will be rendered seamlessly onto the page. Assignments do not expire after due dates, and you can clear your assignments at any time. Version 2.4.3 - minor bug fixes
Podstawowe informacje o rozszerzeniu
Nazwa | Classroom Plus |
ID | hblfkbdoflbakoblaknbjjhjbgfoofog |
Oficjalny URL | https://chromewebstore.google.com/detail/classroom-plus/hblfkbdoflbakoblaknbjjhjbgfoofog |
Opis | Create your own assignments on Google Classroom. |
Rozmiar pliku | 78.15 KB |
Liczba instalacji | 50,000 |
Aktualna Wersja | 2.4.4 |
Ostatnia Aktualizacja | 2021-03-15 |
Data Publikacji | 2018-02-26 |
Ocena | 3.81/5 Łącznie 26 Oceny |
Deweloper | Sidr |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.sidr.io/apps |
Adres URL Strony Pomocy | https://help.sidr.io/en/articles/5021569-welcome-to-classroom-plus |
Adres URL Strony Polityki Prywatności | https://www.sidr.io/privacy |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Classroom Plus", "short_name": "Classroom+", "description": "Create your own assignments on Google Classroom.", "version": "2.4.4", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "16": "assets\/image\/icon16.png", "19": "assets\/image\/icon19.png", "48": "assets\/image\/icon48.png", "128": "assets\/image\/icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/classroom.google.com\/*\/not-turned-in\/all" ], "js": [ "display.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "storage" ] } |