Revision History

Built for teachers - show students' history of edits in a Google Doc

Was ist Revision History?

Revision History ist eine Chrome-Erweiterung, die von https://revisionhistory.com entwickelt wurde, und ihr Hauptmerkmal ist "Built for teachers - show students' history of edits in a Google Doc".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Revision History-Erweiterungs-CRX-Datei herunterladen

Laden Sie Revision History-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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).                    

Grundlegende Informationen zur Erweiterung

Name Revision History Revision History
ID dlepebghjlnddgihakmnpoiifjjpmomh
Offizielle URL https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh
Beschreibung Built for teachers - show students' history of edits in a Google Doc
Dateigröße 457 KB
Installationsanzahl 20,000
Aktuelle Version 1.1.2
Letztes Update 2023-11-08
Veröffentlichungsdatum 2023-08-09
Bewertung 4.25/5 Insgesamt 12 Bewertungen
Entwickler https://revisionhistory.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.revisionhistory.com/privacy.html
Unterstützte Sprachen 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"
    ]
}