Social Comments GPT
Create engaging comments on social media, powered by ChatGPT
Social Comments GPT क्या है?
Social Comments GPT chcepe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create engaging comments on social media, powered by ChatGPT"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Social Comments GPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |