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"
    ]
}