Classroom Folders
Organizes Your Classes Into Folders
什麼是Classroom Folders?
Classroom Folders是由ftwebextender開發的Chrome擴展程式,該擴展的主要功能是“Organizes Your Classes Into Folders”。
擴展截圖
下載Classroom Folders擴展crx文件
下載Classroom Folders擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
DISCLAIMER: I have not updated this extension in a while - so some features might not work with all operating systems. Classroom Folders is a simple extension unlike any other. This extension allows you to organize and group your Google Classrooms. It also allows you to enable darkmode by clicking the browser icon. This extension is for students and teachers both! PRIVACY POLICY: This extension will never save, collect, or do anything else with your data.
擴展基本資訊
名稱 | Classroom Folders |
ID | aapjlnmkiihgclndofgoedpbeiiecejo |
官方網址 | https://chromewebstore.google.com/detail/classroom-folders/aapjlnmkiihgclndofgoedpbeiiecejo |
簡介 | Organizes Your Classes Into Folders |
檔案大小 | 69.93 KB |
安裝次數 | 873 |
目前版本 | 1.2.7 |
更新時間 | 2022-04-01 |
上架時間 | 2020-04-17 |
評分 | 3.75/5 共 4 次評分 |
開發者 | ftwebextender |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://webextends.herokuapp.com/ |
隱私政策頁面URL | https://pastebin.com/w4s7PFqD |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Classroom Folders", "version": "1.2.7", "content_scripts": [ { "all_frames": true, "js": [ "classroom.js" ], "matches": [ "*:\/\/classroom.google.com\/u\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Enable Darkmode" }, "description": "Organizes Your Classes Into Folders", "icons": { "128": "128.png", "32": "32.png", "64": "64.png" } } |