Classroom Folders
Organizes Your Classes Into Folders
Classroom Folders란 무엇입니까?
Classroom Folders은(는) ftwebextender에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Organizes Your Classes Into Folders"입니다.
확장 프로그램 스크린샷
Classroom Folders 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" } } |