Social Comments GPT

Create engaging comments on social media, powered by ChatGPT

Social Comments GPT là gì?

Social Comments GPT là một tiện ích mở rộng Chrome được phát triển bởi chcepe, và tính năng chính của nó là "Create engaging comments on social media, powered by ChatGPT".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Social Comments GPT

Tải xuống các tệp mở rộng Social Comments GPT dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Social Comments GPT Social Comments GPT
ID ejjbbgjlkpckpfkdmgafjpchcddbflpd
URL Chính Thức https://chromewebstore.google.com/detail/social-comments-gpt/ejjbbgjlkpckpfkdmgafjpchcddbflpd
Mô tả Create engaging comments on social media, powered by ChatGPT
Kích Thước Tệp 180 KB
Số Lần Cài Đặt 5,450
Phiên Bản Hiện Tại 1.6.3
Cập Nhật Lần Cuối 2024-01-12
Ngày Phát Hành 2023-01-23
Đánh Giá 2.81/5 Tổng số 21 Đánh Giá
Nhà Phát Triển chcepe
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://social-comments-gpt.com/
URL Trang Chính Sách Bảo Mật https://social-comments-gpt.com/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}