Social Comments GPT

Create engaging comments on social media, powered by ChatGPT

Was ist Social Comments GPT?

Social Comments GPT ist eine Chrome-Erweiterung, die von chcepe entwickelt wurde, und ihr Hauptmerkmal ist "Create engaging comments on social media, powered by ChatGPT".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Social Comments GPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie Social Comments GPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Social Comments GPT Social Comments GPT
ID ejjbbgjlkpckpfkdmgafjpchcddbflpd
Offizielle URL https://chromewebstore.google.com/detail/social-comments-gpt/ejjbbgjlkpckpfkdmgafjpchcddbflpd
Beschreibung Create engaging comments on social media, powered by ChatGPT
Dateigröße 180 KB
Installationsanzahl 5,450
Aktuelle Version 1.6.3
Letztes Update 2024-01-12
Veröffentlichungsdatum 2023-01-23
Bewertung 2.81/5 Insgesamt 21 Bewertungen
Entwickler chcepe
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://social-comments-gpt.com/
URL der Datenschutzrichtlinien-Seite https://social-comments-gpt.com/privacy
Unterstützte Sprachen 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"
    }
}