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 |
官方網址 | 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" } } |