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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Social Comments GPT 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}