BrowseGPT

Automate your browser with artificial intelligence.

BrowseGPT क्या है?

BrowseGPT https://browsegpt.ai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automate your browser with artificial intelligence."।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में BrowseGPT एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
    }
}