Revision History

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

Cos'è Revision History?

Revision History è un'estensione di Chrome sviluppata da https://revisionhistory.com, e la sua funzione principale è "Built for teachers - show students' history of edits in a Google Doc".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Revision History

Scarica i file di estensione Revision History in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Revision History Revision History
ID dlepebghjlnddgihakmnpoiifjjpmomh
URL Ufficiale https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh
Descrizione Built for teachers - show students' history of edits in a Google Doc
Dimensione del File 457 KB
Conteggio Installazioni 20,000
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-11-08
Data di Pubblicazione 2023-08-09
Valutazione 4.25/5 Totale 12 Valutazioni
Sviluppatore https://revisionhistory.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.revisionhistory.com/privacy.html
Lingue Supportate 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"
    ]
}