ShareGPTConvo
Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.
Was ist ShareGPTConvo?
ShareGPTConvo ist eine Chrome-Erweiterung, die von xikai entwickelt wurde, und ihr Hauptmerkmal ist "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.".
Erweiterungsscreenshots
ShareGPTConvo-Erweiterungs-CRX-Datei herunterladen
Laden Sie ShareGPTConvo-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
*Adapted to the latest version of ChatGPT! Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style for viewing on mobile and desktop devices.
Grundlegende Informationen zur Erweiterung
Name | ShareGPTConvo |
ID | kpefpnfbhbealfoihgbcieggmbmmlaej |
Offizielle URL | https://chromewebstore.google.com/detail/sharegptconvo/kpefpnfbhbealfoihgbcieggmbmmlaej |
Beschreibung | Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style. |
Dateigröße | 47.39 KB |
Installationsanzahl | 18 |
Aktuelle Version | 1.1.1 |
Letztes Update | 2024-01-29 |
Veröffentlichungsdatum | 2023-03-28 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | xikai |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ShareGPTConvo", "version": "1.1.1", "description": "Add a Share Button to your ChatGPT! Share chats as beautiful images that are optimized in style.", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "Share GPT Convo", "default_popup": "popup.html" }, "permissions": [], "content_scripts": [ { "matches": [ "*:\/\/chat.openai.com\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |