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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ https://www.browsergpt.app/
URL หน้านโยบายความเป็นส่วนตัว 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"
    ]
}