BrowseGPT

Automate your browser with artificial intelligence.

ما هو BrowseGPT؟

BrowseGPT هو إضافة Chrome تم تطويرها بواسطة https://browsegpt.ai، والميزة الرئيسية لها هي "Automate your browser with artificial intelligence.".

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

screenshot
screenshot
screenshot

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

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

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

                        Give BrowseGPT instructions like "Find a place to stay in Seattle on February 22nd" or "buy a children's book on Amazon", and it will use artificial intelligence to attempt to complete the task for you. BrowseGPT uses OpenAI's GPT-3 model to process web pages and issue commands like CLICK, ENTER_TEXT or NAVIGATE.

Is it useful? Sort of... sometimes it will get stuck in a loop, click on the wrong thing, or navigate to a URL that 404s. It provides a reason for every decision it makes so you can help it correct course if necessary.

⚠️ This is an experimental extension and should be used with caution. Don't use this on pages with private information, or pages where taking the wrong action could cause a serious problem. ⚠️                    

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

الاسم BrowseGPT BrowseGPT
ID gpcljmgannpkbohdomdibbbngpphkemd
عنوان URL الرسمي https://chromewebstore.google.com/detail/browsegpt/gpcljmgannpkbohdomdibbbngpphkemd
الوصف Automate your browser with artificial intelligence.
حجم الملف 3.37 MB
عدد التثبيتات 1,620
النسخة الحالية 2.0
آخر تحديث 2023-03-21
تاريخ النشر 2023-01-28
تقييم 4.00/5 مجموع تقييمات 5
المطور https://browsegpt.ai
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://browsegpt.ai
عنوان صفحة المساعدة https://browsegpt.ai
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BrowseGPT",
    "description": "Automate your browser with artificial intelligence.",
    "version": "2.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}