ChatGPT Screenshot
Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
Cos'è ChatGPT Screenshot?
ChatGPT Screenshot è un'estensione di Chrome sviluppata da kuya5220, e la sua funzione principale è "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT Screenshot
Scarica i file di estensione ChatGPT Screenshot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
想要保存與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!
Informazioni di Base sull'Estensione
Nome | ChatGPT Screenshot |
ID | ppggknlipehkckcplghjfcoemdeaieme |
URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme |
Descrizione | Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage |
Dimensione del File | 90.18 KB |
Conteggio Installazioni | 549 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2023-01-03 |
Data di Pubblicazione | 2022-12-31 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | kuya5220 |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/stu00608/ChatGPT-Screenshot |
URL della Pagina di Aiuto | https://github.com/stu00608/ChatGPT-Screenshot |
Lingue Supportate | 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" } ] } |