Revision History
Built for teachers - show students' history of edits in a Google Doc
Revision History란 무엇입니까?
Revision History은(는) https://revisionhistory.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Built for teachers - show students' history of edits in a Google Doc"입니다.
확장 프로그램 스크린샷
Revision History 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Revision History helps teachers see students' process when they write essays in Google Docs. It is meant to help teachers guide their students through revisions as well as to ensure that students are not just copy/pasting text from AI/LLMs/ChatGPT or other sources. With Revision History, you can see: - How many edits students made to their essays - How long they spent writing - What snippets they copy/pasted - Watch a video replaying the document being written (NEW - in beta) It also works with documents submitted to Google Classroom (as long as they were drafted in Google Docs).
확장 프로그램 기본 정보
이름 | Revision History |
ID | dlepebghjlnddgihakmnpoiifjjpmomh |
공식 URL | https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh |
설명 | Built for teachers - show students' history of edits in a Google Doc |
파일 크기 | 457 KB |
설치 횟수 | 20,000 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2023-11-08 |
출시 날짜 | 2023-08-09 |
평점 | 4.25/5 총 12 개의 평점 |
개발자 | https://revisionhistory.com |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.revisionhistory.com/privacy.html |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.2", "manifest_version": 3, "name": "Revision History", "description": "Built for teachers - show students' history of edits in a Google Doc", "action": { "default_popup": "js\/index.html", "default_title": "Revision History" }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/*", "*:\/\/classroom.google.com\/*" ], "all_frames": true, "js": [ "js\/content.js" ] } ], "background": { "service_worker": "js\/background.js" }, "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "*:\/\/docs.google.com\/*" ] } ], "icons": { "16": "images\/black-logo-16.png", "32": "images\/black-logo-32.png", "48": "images\/black-logo-48.png", "128": "images\/black-logo-128.png" }, "permissions": [ "storage" ] } |