ChatGPTable
A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images
Co to jest ChatGPTable?
ChatGPTable to rozszerzenie Chrome opracowane przez xide.projext, a jego główną funkcją jest „A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPTable
Pobierz pliki rozszerzeń ChatGPTable w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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/
Podstawowe informacje o rozszerzeniu
Nazwa | ChatGPTable |
ID | jboebkcdfhknhklkombfhpflpoaebpnk |
Oficjalny URL | https://chromewebstore.google.com/detail/chatgptable/jboebkcdfhknhklkombfhpflpoaebpnk |
Opis | A Chrome extension to easily copy the table part of a ChatGPT response into markdown syntax and images |
Rozmiar pliku | 119 KB |
Liczba instalacji | 48 |
Aktualna Wersja | 0.2.0 |
Ostatnia Aktualizacja | 2023-03-21 |
Data Publikacji | 2023-03-21 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | xide.projext |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://chatgptable.xideprojext.xyz/ |
Adres URL Strony Pomocy | https://chatgptable.xideprojext.xyz/ |
Obsługiwane Języki | 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" ] } ] } |