Revision History

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

Wat is Revision History?

Revision History is een Chrome-extensie ontwikkeld door https://revisionhistory.com, en de belangrijkste functie is "Built for teachers - show students' history of edits in a Google Doc".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Revision History

Download Revision History-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Revision History Revision History
ID dlepebghjlnddgihakmnpoiifjjpmomh
Officiële URL https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh
Beschrijving Built for teachers - show students' history of edits in a Google Doc
Bestandsgrootte 457 KB
Aantal Installaties 20,000
Huidige Versie 1.1.2
Laatst Bijgewerkt 2023-11-08
Publicatiedatum 2023-08-09
Beoordeling 4.25/5 Totaal 12 Beoordelingen
Ontwikkelaar https://revisionhistory.com
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://www.revisionhistory.com/privacy.html
Ondersteunde Talen 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"
    ]
}