Improved To Do Page For Google Classroom™
Mark you assignments as done without having to open them
Improved To Do Page For Google Classroom™ là gì?
Improved To Do Page For Google Classroom™ là một tiện ích mở rộng Chrome được phát triển bởi Digitally, và tính năng chính của nó là "Mark you assignments as done without having to open them".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Improved To Do Page For Google Classroom™
Tải xuống các tệp mở rộng Improved To Do Page For Google Classroom™ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lbeomecdcepneegoljjemmlkfpbfjokh |
URL Chính Thức | https://chrome.google.com/webstore/detail/improved-to-do-page-for-g/lbeomecdcepneegoljjemmlkfpbfjokh |
Mô tả | Mark you assignments as done without having to open them |
Kích Thước Tệp | 47.48 KB |
Số Lần Cài Đặt | 2,130 |
Phiên Bản Hiện Tại | 3.21 |
Cập Nhật Lần Cuối | 2019-01-15 |
Ngày Phát Hành | 2019-01-15 |
Đánh Giá | 4.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Digitally |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |