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”。

扩展截图

screenshot
screenshot
screenshot

下载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 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"
    ]
}