ChatGPT Screenshot
Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
Wat is ChatGPT Screenshot?
ChatGPT Screenshot is een Chrome-extensie ontwikkeld door kuya5220, en de belangrijkste functie is "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT Screenshot
Download ChatGPT Screenshot-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
想要保存與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! Basisinformatie over de Extensie
| Naam | |
| ID | ppggknlipehkckcplghjfcoemdeaieme |
| Officiële URL | https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme |
| Beschrijving | Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage |
| Bestandsgrootte | 90.18 KB |
| Aantal Installaties | 549 |
| Huidige Versie | 0.0.5 |
| Laatst Bijgewerkt | 2023-01-03 |
| Publicatiedatum | 2022-12-31 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | kuya5220 |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/stu00608/ChatGPT-Screenshot |
| Help Pagina-URL | https://github.com/stu00608/ChatGPT-Screenshot |
| Ondersteunde Talen | 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"
}
]
} | |