XLang Web Agent

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

XLang Web Agentคืออะไร?

XLang Web Agent เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xlang-webot และคุณลักษณะหลักของมันคือ "A Chrome extension that navigates websites automatically to fulfill input instructions."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย XLang Web Agent

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            }
        }
    }
}