AI Character for GPT

One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses.

ما هو AI Character for GPT؟

AI Character for GPT هو إضافة Chrome تم تطويرها بواسطة AI Character for GPT، والميزة الرئيسية لها هي "One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة AI Character for GPT

قم بتنزيل ملفات الامتداد AI Character for GPT بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Make AI more useful and accurate (powerful!) by curating their character. 

This free extension provides an "one click" functionality to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses.

Key features:
1. List of preset for commonly used characters
2. Quick search among the characters
3. Add custom characters (similar to GPT builder)

Note: you could always edit or tweak the prompt as needed.

FAQ
1. [fixed] The AI character button is missing in the chat box?
This can usually be resolved by refreshing the page.

2. Does the extension store any user data?
No. We do not access user data.

Update
- 2024/2/8 fix breakage due to Bard's renaming to Gemini
- 2024/2/7 fix the need to manually refresh page in new chat session                    

معلومات أساسية عن التمديد

الاسم AI Character for GPT AI Character for GPT
ID daoeioifimkjegafelcaljboknjkkohh
عنوان URL الرسمي https://chromewebstore.google.com/detail/ai-character-for-gpt/daoeioifimkjegafelcaljboknjkkohh
الوصف One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses.
حجم الملف 402 KB
عدد التثبيتات 65
النسخة الحالية 2.3
آخر تحديث 2024-02-09
تاريخ النشر 2023-11-05
تقييم 5.00/5 مجموع تقييمات 1
المطور AI Character for GPT
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://www.freeprivacypolicy.com/live/2a563cc6-25e5-410a-b3bb-255de0bc6835
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "One click to curate AI chatbot, including ChatGPT, Google Bard to improve AI responses.",
    "version": "2.3",
    "manifest_version": 3,
    "name": "AI Character for GPT",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-32.png"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*",
                "https:\/\/bard.google.com\/*",
                "https:\/\/gemini.google.com\/*",
                "https:\/\/chat.openai.com\/",
                "https:\/\/bard.google.com\/",
                "https:\/\/gemini.google.com\/"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-16.png",
                "icon-32.png",
                "icon-48.png",
                "icon-128.png"
            ],
            "matches": []
        }
    ]
}