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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            }
        }
    }
}