Social Comments GPT

Create engaging comments on social media, powered by ChatGPT

Hvad er Social Comments GPT?

Social Comments GPT er en Chrome-udvidelse udviklet af chcepe, og dens hovedfunktion er "Create engaging comments on social media, powered by ChatGPT".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Social Comments GPT-udvidelses-CRX-fil

Download Social Comments GPT-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Social Comments GPT Social Comments GPT
ID ejjbbgjlkpckpfkdmgafjpchcddbflpd
Officiel URL https://chromewebstore.google.com/detail/social-comments-gpt/ejjbbgjlkpckpfkdmgafjpchcddbflpd
Beskrivelse Create engaging comments on social media, powered by ChatGPT
Filstørrelse 180 KB
Antal Installationer 5,450
Nuværende Version 1.6.3
Senest Opdateret 2024-01-12
Udgivelsesdato 2023-01-23
Bedømmelse 2.81/5 Samlet 21 Bedømmelser
Udvikler chcepe
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://social-comments-gpt.com/
URL til Fortrolighedspolitik Side https://social-comments-gpt.com/privacy
Understøttede Sprog 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"
    }
}