Revision History

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

Co je Revision History?

Revision History je rozšíření Chrome vyvinuté https://revisionhistory.com, a jeho hlavní funkcí je „Built for teachers - show students' history of edits in a Google Doc“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Revision History

Stáhněte si soubory rozšíření Revision History ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Revision History Revision History
ID dlepebghjlnddgihakmnpoiifjjpmomh
Oficiální URL https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh
Popis Built for teachers - show students' history of edits in a Google Doc
Velikost souboru 457 KB
Počet instalací 20,000
Aktuální Verze 1.1.2
Poslední Aktualizace 2023-11-08
Datum Vydání 2023-08-09
Hodnocení 4.25/5 Celkem 12 Hodnocení
Vývojář https://revisionhistory.com
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.revisionhistory.com/privacy.html
Podporované Jazyky 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"
    ]
}