Improved To Do Page For Google Classroom™
Mark you assignments as done without having to open them
什么是Improved To Do Page For Google Classroom™?
Improved To Do Page For Google Classroom™是由Digitally开发的Chrome扩展程序,该扩展的主要功能是“Mark you assignments as done without having to open them”。
扩展截图
下载Improved To Do Page For Google Classroom™扩展crx文件
下载Improved To Do Page For Google Classroom™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a mark as done button to the to do menu in Google Classroom™, you can use this to mark tasks as done without having to load them up. This is super useful for speeding up your workflow and helping you focus on what is important.
扩展基本信息
名称 | |
ID | lbeomecdcepneegoljjemmlkfpbfjokh |
官方URL | https://chrome.google.com/webstore/detail/improved-to-do-page-for-g/lbeomecdcepneegoljjemmlkfpbfjokh |
简介 | Mark you assignments as done without having to open them |
文件大小 | 47.48 KB |
安装次数 | 2,130 |
当前版本 | 3.21 |
更新时间 | 2019-01-15 |
上架时间 | 2019-01-15 |
评分 | 4.83/5 共6次评分 |
开发者 | Digitally |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Improved To Do Page For Google Classroom\u2122", "short_name": "Improved To Do Page For Google Classroom\u2122", "description": "Mark you assignments as done without having to open them", "version": "3.21", "browser_action": { "default_icon": "images\/icon96.png" }, "icons": { "32": "images\/icon32.png", "36": "images\/icon36.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "96": "images\/icon96.png" }, "content_scripts": [ { "matches": [ "https:\/\/classroom.google.com\/*" ], "js": [ "libraries\/jquery\/jquery-3.2.1.min.js", "scripts\/addMarkAsDoneButtons.js" ], "css": [ "html\/customStyles.css" ] }, { "matches": [ "https:\/\/classroom.google.com\/*\/a\/*\/details" ], "js": [ "libraries\/jquery\/jquery-3.2.1.min.js", "scripts\/markAsDone.js" ], "all_frames": true } ], "permissions": [ "https:\/\/classroom.google.com\/*" ], "web_accessible_resources": [ "html\/markAsDoneButton.html" ] } |