Classroom Plus

Create your own assignments on Google Classroom.

Qu'est-ce que Classroom Plus ?

Classroom Plus est une extension Chrome développée par Sidr, et sa fonction principale est "Create your own assignments on Google Classroom.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Classroom Plus

Téléchargez les fichiers d'extension Classroom Plus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Classroom Plus Classroom Plus
ID hblfkbdoflbakoblaknbjjhjbgfoofog
URL Officiel https://chromewebstore.google.com/detail/classroom-plus/hblfkbdoflbakoblaknbjjhjbgfoofog
Description Create your own assignments on Google Classroom.
Taille du Fichier 78.15 KB
Nombre d'Installations 50,000
Version Actuelle 2.4.4
Dernière Mise à Jour 2021-03-15
Date de Publication 2018-02-26
Évaluation 3.81/5 Total 26 Évaluations
Développeur Sidr
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.sidr.io/apps
URL de la Page d'Aide https://help.sidr.io/en/articles/5021569-welcome-to-classroom-plus
URL de la Page de Politique de Confidentialité https://www.sidr.io/privacy
Langues Prises en Charge 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"
    ]
}