Revision History

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

Revision History là gì?

Revision History là một tiện ích mở rộng Chrome được phát triển bởi https://revisionhistory.com, và tính năng chính của nó là "Built for teachers - show students' history of edits in a Google Doc".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Revision History

Tải xuống các tệp mở rộng Revision History dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Revision History Revision History
ID dlepebghjlnddgihakmnpoiifjjpmomh
URL Chính Thức https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh
Mô tả Built for teachers - show students' history of edits in a Google Doc
Kích Thước Tệp 457 KB
Số Lần Cài Đặt 20,000
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2023-11-08
Ngày Phát Hành 2023-08-09
Đánh Giá 4.25/5 Tổng số 12 Đánh Giá
Nhà Phát Triển https://revisionhistory.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.revisionhistory.com/privacy.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}