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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Revision History
قم بتنزيل ملفات الامتداد Revision History بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة سياسة الخصوصية | 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" ] } |