Revision History
Built for teachers - show students' history of edits in a Google Doc
What is Revision History?
Revision History is a Chrome extension developed by https://revisionhistory.com, and its main feature is "Built for teachers - show students' history of edits in a Google Doc".
Extension Screenshots
Download Revision History Extension CRX File
Download Revision History extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | Revision History |
ID | dlepebghjlnddgihakmnpoiifjjpmomh |
Official URL | https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh |
Description | Built for teachers - show students' history of edits in a Google Doc |
File Size | 457 KB |
Installation Count | 20,000 |
Current Version | 1.1.2 |
Last Updated | 2023-11-08 |
Publish Date | 2023-08-09 |
Rating | 4.25/5 Total 12 Ratings |
Developer | https://revisionhistory.com |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.revisionhistory.com/privacy.html |
Supported Languages | 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" ] } |