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ファイルをダウンロード
Revision History拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |