Social Comments GPT
Create engaging comments on social media, powered by ChatGPT
Co to jest Social Comments GPT?
Social Comments GPT to rozszerzenie Chrome opracowane przez chcepe, a jego główną funkcją jest „Create engaging comments on social media, powered by ChatGPT”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Social Comments GPT
Pobierz pliki rozszerzeń Social Comments GPT 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
A chrome extension that creates engaging comments on social media, powered by OpenAI's ChatGPT. This extension can be a time-saver for professionals or influencers looking to increase their engagement, reach, and leads. Currently supports LinkedIn, Instagram, and Twitter. Version 1.6.3: Update model to turbo, fix Instagram support
Podstawowe informacje o rozszerzeniu
Nazwa | Social Comments GPT |
ID | ejjbbgjlkpckpfkdmgafjpchcddbflpd |
Oficjalny URL | https://chromewebstore.google.com/detail/social-comments-gpt/ejjbbgjlkpckpfkdmgafjpchcddbflpd |
Opis | Create engaging comments on social media, powered by ChatGPT |
Rozmiar pliku | 180 KB |
Liczba instalacji | 5,450 |
Aktualna Wersja | 1.6.3 |
Ostatnia Aktualizacja | 2024-01-12 |
Data Publikacji | 2023-01-23 |
Ocena | 2.81/5 Łącznie 21 Oceny |
Deweloper | chcepe |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://social-comments-gpt.com/ |
Adres URL Strony Polityki Prywatności | https://social-comments-gpt.com/privacy |
Obsługiwane Języki | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Social Comments GPT", "description": "Create engaging comments on social media, powered by ChatGPT", "version": "1.6.3", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "*:\/\/*.linkedin.com\/*", "*:\/\/linkedin.com\/*", "*:\/\/*.instagram.com\/*", "*:\/\/instagram.com\/*", "*:\/\/*.twitter.com\/*", "*:\/\/twitter.com\/*" ], "js": [ "js\/vendor.js", "js\/content_script.js" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/social-comments-gpt-site.vercel.app\/", "https:\/\/social-comments-gpt.com\/" ], "background": { "service_worker": "js\/background.js" } } |