ChatGPT Screenshot
Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
¿Qué es ChatGPT Screenshot?
ChatGPT Screenshot es una extensión de Chrome desarrollada por kuya5220, y su función principal es "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ChatGPT Screenshot
Descarga archivos de extensión ChatGPT Screenshot en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
想要保存與ChatGPT的對話,卻覺得一張一張手動截圖太麻煩嗎?使用這個插件,即可透過一次點擊獲取完整的對話紀錄! Wanna save the conversation content with ChatGPT but too lazy to screenshot one by one? Get this extension to screenshot the complete conversation by one click!
Información Básica de la Extensión
Nombre | ChatGPT Screenshot |
ID | ppggknlipehkckcplghjfcoemdeaieme |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme |
Descripción | Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage |
Tamaño del Archivo | 90.18 KB |
Cantidad de Instalaciones | 549 |
Versión Actual | 0.0.5 |
Última Actualización | 2023-01-03 |
Fecha de Publicación | 2022-12-31 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | kuya5220 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/stu00608/ChatGPT-Screenshot |
URL de la Página de Ayuda | https://github.com/stu00608/ChatGPT-Screenshot |
Idiomas Soportados | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Screenshot", "action": [], "manifest_version": 3, "version": "0.0.5", "description": "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage", "permissions": [ "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "html2canvas.min.js" ], "run_at": "document_end" } ] } |