Revision History

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

Τι είναι το Revision History;

Το Revision History είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://revisionhistory.com, και η κύρια λειτουργία του είναι "Built for teachers - show students' history of edits in a Google Doc".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Revision History

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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"
    ]
}