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
Step 1. Click "Table copy" button to convert HTML table of ChatGPT response to markdown table 2. Paste anywhere you want markdown table https://chatgptable.xideprojext.xyz/
Grundlegende Informationen zur Erweiterung
Name | ChatGPTable |
ID | jboebkcdfhknhklkombfhpflpoaebpnk |
Offizielle URL | https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk |
Beschreibung | A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images |
Dateigröße | 119 KB |
Installationsanzahl | 48 |
Aktuelle Version | 0.2.0 |
Letztes Update | 2023-03-21 |
Veröffentlichungsdatum | 2023-03-21 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | xide.projext |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://chatgptable.xideprojext.xyz/ |
Hilfeseite URL | https://chatgptable.xideprojext.xyz/ |
Unterstützte Sprachen | en |
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.2.0", "manifest_version": 3, "name": "ChatGPTable", "action": { "default_popup": "popup.html", "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" ] } ] } |