Social Comments GPT
Create engaging comments on social media, powered by ChatGPT
什么是Social Comments GPT?
Social Comments GPT是由chcepe开发的Chrome扩展程序,该扩展的主要功能是“Create engaging comments on social media, powered by ChatGPT”。
扩展截图
下载Social Comments GPT扩展crx文件
下载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" } } |