ChatGPTable
A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Hvad er ChatGPTable?
ChatGPTable er en Chrome-udvidelse udviklet af xide.projext, og dens hovedfunktion er "A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images".
Udvidelsesskærmbilleder
Download ChatGPTable-udvidelses-CRX-fil
Download ChatGPTable-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
1. Easy to convert HTML table of ChatGPT response to markdown table 2. Put anywhare you want markdown table https://chatgptable.xideprojext.xyz/
Grundlæggende oplysninger om udvidelsen
Navn | ChatGPTable |
ID | ammbkfinlagkifoanpbmkiglplfjogpf |
Officiel URL | https://chromewebstore.google.com/detail/chatgptable/ammbkfinlagkifoanpbmkiglplfjogpf |
Beskrivelse | A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images |
Filstørrelse | 78.69 KB |
Antal Installationer | 190 |
Nuværende Version | 0.1.8 |
Senest Opdateret | 2023-03-19 |
Udgivelsesdato | 2023-03-14 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | xide.projext |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://chatgptable.xideprojext.xyz/ |
Hjælpeside-URL | https://chatgptable.xideprojext.xyz/ |
Understøttede Sprog | 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" ] } ] } |