XLang Web Agent

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

Qu'est-ce que XLang Web Agent ?

XLang Web Agent est une extension Chrome développée par xlang-webot, et sa fonction principale est "A Chrome extension that navigates websites automatically to fulfill input instructions.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension XLang Web Agent

Téléchargez les fichiers d'extension XLang Web Agent au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom XLang Web Agent XLang Web Agent
ID kbeepjbbaglgbhjkgnfeapbfofogblhb
URL Officiel https://chromewebstore.google.com/detail/xlang-web-agent/kbeepjbbaglgbhjkgnfeapbfofogblhb
Description A Chrome extension that navigates websites automatically to fulfill input instructions.
Taille du Fichier 5.18 MB
Nombre d'Installations 776
Version Actuelle 1.1.4
Dernière Mise à Jour 2023-08-09
Date de Publication 2023-07-17
Évaluation 5.00/5 Total 1 Évaluations
Développeur xlang-webot
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            }
        }
    }
}