Revision History
Built for teachers - show students' history of edits in a Google Doc
O que é Revision History?
Revision History é uma extensão do Chrome desenvolvida por https://revisionhistory.com, e sua principal característica é "Built for teachers - show students' history of edits in a Google Doc".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Revision History
Baixe arquivos de extensão Revision History no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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).
Informações Básicas da Extensão
Nome | Revision History |
ID | dlepebghjlnddgihakmnpoiifjjpmomh |
URL Oficial | https://chromewebstore.google.com/detail/revision-history/dlepebghjlnddgihakmnpoiifjjpmomh |
Descrição | Built for teachers - show students' history of edits in a Google Doc |
Tamanho do Arquivo | 457 KB |
Contagem de Instalações | 20,000 |
Versão Atual | 1.1.2 |
Última Atualização | 2023-11-08 |
Data de Publicação | 2023-08-09 |
Classificação | 4.25/5 Total de 12 Avaliações |
Desenvolvedor | https://revisionhistory.com |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://www.revisionhistory.com/privacy.html |
Idiomas Suportados | 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" ] } |