XLang Web Agent

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

什麼是XLang Web Agent?

XLang Web Agent是由xlang-webot開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension that navigates websites automatically to fulfill input instructions.”。

擴展截圖

screenshot
screenshot

下載XLang Web Agent擴展crx文件

下載XLang Web Agent擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 XLang Web Agent XLang Web Agent
ID kbeepjbbaglgbhjkgnfeapbfofogblhb
官方網址 https://chromewebstore.google.com/detail/xlang-web-agent/kbeepjbbaglgbhjkgnfeapbfofogblhb
簡介 A Chrome extension that navigates websites automatically to fulfill input instructions.
檔案大小 5.18 MB
安裝次數 776
目前版本 1.1.4
更新時間 2023-08-09
上架時間 2023-07-17
評分 5.00/5 共 1 次評分
開發者 xlang-webot
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            }
        }
    }
}