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
官方網址 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"
    ]
}