Social Comments GPT
Create engaging comments on social media, powered by ChatGPT
Cos'è Social Comments GPT?
Social Comments GPT è un'estensione di Chrome sviluppata da chcepe, e la sua funzione principale è "Create engaging comments on social media, powered by ChatGPT".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Social Comments GPT
Scarica i file di estensione Social Comments GPT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Social Comments GPT |
ID | ejjbbgjlkpckpfkdmgafjpchcddbflpd |
URL Ufficiale | https://chromewebstore.google.com/detail/social-comments-gpt/ejjbbgjlkpckpfkdmgafjpchcddbflpd |
Descrizione | Create engaging comments on social media, powered by ChatGPT |
Dimensione del File | 180 KB |
Conteggio Installazioni | 5,450 |
Versione Corrente | 1.6.3 |
Ultimo Aggiornamento | 2024-01-12 |
Data di Pubblicazione | 2023-01-23 |
Valutazione | 2.81/5 Totale 21 Valutazioni |
Sviluppatore | chcepe |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://social-comments-gpt.com/ |
URL della Pagina della Politica sulla Privacy | https://social-comments-gpt.com/privacy |
Lingue Supportate | 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" } } |