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