Social Comments GPT
Create engaging comments on social media, powered by ChatGPT
Что такое Social Comments GPT?
Social Comments GPT - это расширение Chrome, разработанное chcepe, и его основная функция - "Create engaging comments on social media, powered by ChatGPT".
Снимки экрана расширения
Скачать файл CRX расширения Social Comments GPT
Скачайте файлы расширений Social Comments GPT в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Social Comments GPT |
ID | ejjbbgjlkpckpfkdmgafjpchcddbflpd |
Официальный URL | https://chromewebstore.google.com/detail/social-comments-gpt/ejjbbgjlkpckpfkdmgafjpchcddbflpd |
Описание | Create engaging comments on social media, powered by ChatGPT |
Размер файла | 180 KB |
Количество установок | 5,450 |
Текущая Версия | 1.6.3 |
Последнее Обновление | 2024-01-12 |
Дата публикации | 2023-01-23 |
Рейтинг | 2.81/5 Всего 21 оценок |
Разработчик | chcepe |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://social-comments-gpt.com/ |
URL страницы политики конфиденциальности | https://social-comments-gpt.com/privacy |
Поддерживаемые языки | 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" } } |