ChatGPT Screenshot
Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
Qu'est-ce que ChatGPT Screenshot ?
ChatGPT Screenshot est une extension Chrome développée par kuya5220, et sa fonction principale est "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Screenshot
Téléchargez les fichiers d'extension ChatGPT Screenshot au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
想要保存與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!
Informations de Base sur l'Extension
Nom | ChatGPT Screenshot |
ID | ppggknlipehkckcplghjfcoemdeaieme |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme |
Description | Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage |
Taille du Fichier | 90.18 KB |
Nombre d'Installations | 549 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2023-01-03 |
Date de Publication | 2022-12-31 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | kuya5220 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/stu00608/ChatGPT-Screenshot |
URL de la Page d'Aide | https://github.com/stu00608/ChatGPT-Screenshot |
Langues Prises en Charge | 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" } ] } |