BrowserGPT

A ChatGPT agent directly in your browser

ما هو BrowserGPT؟

BrowserGPT هو إضافة Chrome تم تطويرها بواسطة chriszhu12، والميزة الرئيسية لها هي "A ChatGPT agent directly in your browser".

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

screenshot

تحميل ملف CRX للإضافة BrowserGPT

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

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

                        BrowserGPT lets you have a ChatGPT directly in your browser, letting you access ChatGPT as your surf the web.

✅ Access ChatGPT without changing tabs
✅ ChatGPT will read and summarize what you're reading
✅ Automatically compose emails, blog posts, and more

The best part? It's entirely open source and free!                    

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

الاسم BrowserGPT BrowserGPT
ID dkggfdfogdfffagkibafginmpogkmaod
عنوان URL الرسمي https://chromewebstore.google.com/detail/browsergpt/dkggfdfogdfffagkibafginmpogkmaod
الوصف A ChatGPT agent directly in your browser
حجم الملف 614 KB
عدد التثبيتات 1,539
النسخة الحالية 5.0.6
آخر تحديث 2023-06-16
تاريخ النشر 2023-05-15
تقييم 4.00/5 مجموع تقييمات 4
المطور chriszhu12
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.browsergpt.app/
عنوان صفحة المساعدة https://www.browsergpt.app/
عنوان صفحة سياسة الخصوصية https://www.browsergpt.app/privacy.html
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A ChatGPT agent directly in your browser",
    "version": "5.0.6",
    "manifest_version": 3,
    "name": "BrowserGPT",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}