Classroom Plus

Create your own assignments on Google Classroom.

什么是Classroom Plus?

Classroom Plus是由Sidr开发的Chrome扩展程序,该扩展的主要功能是“Create your own assignments on Google Classroom.”。

扩展截图

screenshot
screenshot

下载Classroom Plus扩展crx文件

下载Classroom Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Classroom Plus Classroom Plus
ID hblfkbdoflbakoblaknbjjhjbgfoofog
官方URL https://chromewebstore.google.com/detail/classroom-plus/hblfkbdoflbakoblaknbjjhjbgfoofog
简介 Create your own assignments on Google Classroom.
文件大小 78.15 KB
安装次数 50,000
当前版本 2.4.4
更新时间 2021-03-15
上架时间 2018-02-26
评分 3.81/5 共26次评分
开发者 Sidr
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.sidr.io/apps
帮助页面URL https://help.sidr.io/en/articles/5021569-welcome-to-classroom-plus
隐私政策页面URL https://www.sidr.io/privacy
支持的语言 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"
    ]
}