Comment-AI

💬 Comment-AI 💬 Feeling the pressure to leave a meaningful comment on a post, but struggling with the right words? Introducing…

Comment-AI क्या है?

Comment-AI Comment-AI द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "💬 Comment-AI 💬 Feeling the pressure to leave a meaningful comment on a post, but struggling with the right words? Introducing…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Comment-AI एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        💬 Comment-AI 💬

Feeling the pressure to leave a meaningful comment on a post, but struggling with the right words?

Introducing Comment-AI, your copilot that crafts engaging comments for you, amplifying your presence and engagement across social platforms.

What does it do? Comment-AI is a Chrome extension that crafts engaging and relevant comments for LinkedIn, Instagram, and Twitter, helping you shine and establish genuine connections.

Never let words escape you again. With Comment-AI, enhance your online presence, establish genuine connections, and engage meaningfully across social platforms.

🥳 Key Features 🥳:

- Unlimited custom prompts
- LinkedIn comment generator
- Instagram comment generator
- Twitter comment generator
- Multilingual support
- Word count control
- Comment count control
- Add/edit/delete custom prompts

📘 How to Use It? 📘:

1. License Validation
- Validate your license with your email and license key.
- Add and validate your OpenAI API Key (only GPT-3.5 Turbo is supported currently).

2. Prompt Settings
- Choose your platform (LinkedIn, Instagram, or Twitter).
- Name your prompt.
- Set the number of comments to generate.
- Set the number of words per comment.
- Select the desired language for the comments.
- Add a custom instruction for the AI to follow.
- Save your settings.

3. Comment Generation
- Select the text of the post you want to comment on.
- Click on the comment zone; a menu "🔄 ⬅️ ➡️ ✅ ❌" will appear at the top.
- Click on the generate button "🔄" and let the AI generate your comments.
- Use "⬅️" and "➡️" to navigate through the generated comments list.
- Use "✅" to select and validate your comment. You can refine it if desired.
- Post your comment 🥳.

4. Notes
- When you generate a comment for a post, you must always validate (✅) or cancel (❌) the comment before moving on to another post. Otherwise, the menu will not appear if you try to generate a comment for another post without validating (✅) or canceling (❌) the previous one.

- By default, the system prompt is used if you don't add a custom prompt. Each platform has a default system prompt, so there is no need to add a custom prompt unless you prefer to do so.

- If you add a custom prompt, you can select it from the prompt gallery.

- To make your OpenAI API Key work, you need to enable billing on your OpenAI dashboard -> https://platform.openai.com/account/billing/overview

- If your OpenAI API key initially works and then stops, please try to generate another API key and validate it in the Comment-AI settings.

5. Support
- If you encounter any issues, please send us an email at [email protected]                    

एक्सटेंशन की मूल जानकारी

नाम Comment-AI Comment-AI
ID ngaoohdgcaeojdngpdhaafnccgcbhlgl
आधिकारिक URL https://chromewebstore.google.com/detail/comment-ai/ngaoohdgcaeojdngpdhaafnccgcbhlgl
विवरण 💬 Comment-AI 💬 Feeling the pressure to leave a meaningful comment on a post, but struggling with the right words? Introducing…
फ़ाइल का आकार 771 KB
स्थापना संख्या 203
वर्तमान संस्करण 1.5
अंतिम अपडेट 2023-11-22
प्रकाशन तिथि 2023-07-27
रेटिंग 5.00/5 कुल 9 रेटिंग्स
डेवलपर Comment-AI
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://comment-ai.com/
सहायता पृष्ठ URL https://comment-ai.com/
गोपनीयता नीति पृष्ठ URL https://comment-ai.com/tos
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Comment-AI",
    "version": "1.5",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "linkedin.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.instagram.com\/*"
            ],
            "js": [
                "instagram.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "twitter.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.instagram.com\/*",
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "panel.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.comment-ai.com\/validate",
        "https:\/\/*.openai.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bootstrap\/css\/bootstrap.min.css",
                "cai128.png"
            ],
            "matches": [
                ""
            ]
        }
    ]
}