ChatGPTable
A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Was ist ChatGPTable?
ChatGPTable ist eine Chrome-Erweiterung, die von xide.projext entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".
Erweiterungsscreenshots
ChatGPTable-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChatGPTable-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
1. Easy to convert HTML table of ChatGPT response to markdown table 2. Put anywhare you want markdown table https://chatgptable.xideprojext.xyz/
Grundlegende Informationen zur Erweiterung
Name | ChatGPTable |
ID | ammbkfinlagkifoanpbmkiglplfjogpf |
Offizielle URL | https://chromewebstore.google.com/detail/chatgptable/ammbkfinlagkifoanpbmkiglplfjogpf |
Beschreibung | A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images |
Dateigröße | 78.69 KB |
Installationsanzahl | 190 |
Aktuelle Version | 0.1.8 |
Letztes Update | 2023-03-19 |
Veröffentlichungsdatum | 2023-03-14 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | xide.projext |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://chatgptable.xideprojext.xyz/ |
Hilfeseite URL | https://chatgptable.xideprojext.xyz/ |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images", "version": "0.1.8", "manifest_version": 3, "name": "ChatGPTable", "action": { "default_icon": "icon.png" }, "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon.png" ], "matches": [] } ], "permissions": [], "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ] } |