BrowseGPT

Automate your browser with artificial intelligence.

Was ist BrowseGPT?

BrowseGPT ist eine Chrome-Erweiterung, die von https://browsegpt.ai entwickelt wurde, und ihr Hauptmerkmal ist "Automate your browser with artificial intelligence.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

BrowseGPT-Erweiterungs-CRX-Datei herunterladen

Laden Sie BrowseGPT-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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. ⚠️                    

Grundlegende Informationen zur Erweiterung

Name BrowseGPT BrowseGPT
ID gpcljmgannpkbohdomdibbbngpphkemd
Offizielle URL https://chromewebstore.google.com/detail/browsegpt/gpcljmgannpkbohdomdibbbngpphkemd
Beschreibung Automate your browser with artificial intelligence.
Dateigröße 3.37 MB
Installationsanzahl 1,620
Aktuelle Version 2.0
Letztes Update 2023-03-21
Veröffentlichungsdatum 2023-01-28
Bewertung 4.00/5 Insgesamt 5 Bewertungen
Entwickler https://browsegpt.ai
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://browsegpt.ai
Hilfeseite URL https://browsegpt.ai
Unterstützte Sprachen 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"
    }
}