XLang Web Agent

A Chrome extension that navigates websites automatically to fulfill input instructions.

Hvad er XLang Web Agent?

XLang Web Agent er en Chrome-udvidelse udviklet af xlang-webot, og dens hovedfunktion er "A Chrome extension that navigates websites automatically to fulfill input instructions.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download XLang Web Agent-udvidelses-CRX-fil

Download XLang Web Agent-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        This extension is XLang Web Agent which can navigate websites automatically to fulfill input instructions. It can interact with XLang Chat interface and execute tasks on the web or extract information from websites for users.                    

Grundlæggende oplysninger om udvidelsen

Navn XLang Web Agent XLang Web Agent
ID kbeepjbbaglgbhjkgnfeapbfofogblhb
Officiel URL https://chromewebstore.google.com/detail/xlang-web-agent/kbeepjbbaglgbhjkgnfeapbfofogblhb
Beskrivelse A Chrome extension that navigates websites automatically to fulfill input instructions.
Filstørrelse 5.18 MB
Antal Installationer 776
Nuværende Version 1.1.4
Senest Opdateret 2023-08-09
Udgivelsesdato 2023-07-17
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler xlang-webot
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A Chrome extension that navigates websites automatically to fulfill input instructions.",
    "version": "1.1.4",
    "manifest_version": 3,
    "name": "XLang Web Agent",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "clipboardWrite",
        "debugger",
        "management",
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/localhost\/*",
        "*:\/\/chat.xlang.ai\/*"
    ],
    "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": []
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            }
        }
    }
}