ChatGPTable
A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Wat is ChatGPTable?
ChatGPTable is een Chrome-extensie ontwikkeld door xide.projext, en de belangrijkste functie is "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPTable
Download ChatGPTable-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
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/
Basisinformatie over de Extensie
Naam | ChatGPTable |
ID | jboebkcdfhknhklkombfhpflpoaebpnk |
Officiële URL | https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk |
Beschrijving | A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images |
Bestandsgrootte | 119 KB |
Aantal Installaties | 48 |
Huidige Versie | 0.2.0 |
Laatst Bijgewerkt | 2023-03-21 |
Publicatiedatum | 2023-03-21 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | xide.projext |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://chatgptable.xideprojext.xyz/ |
Help Pagina-URL | https://chatgptable.xideprojext.xyz/ |
Ondersteunde Talen | 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" ] } ] } |