Owloops

Owloops extension for exporting Owloops tests from DevTools recorder and AI browser automation.

Owloopsคืออะไร?

Owloops เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://owloops.com และคุณลักษณะหลักของมันคือ "Owloops extension for exporting Owloops tests from DevTools recorder and AI browser automation."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Owloops ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allows you to export recordings from Chrome DevTools Recorder as Owloops tests quickly.

It comes with the Replay feature, which allows users to easily sync the recordings to the Owloops platform and replay them.

Owloops AI simplifies browser automation and exploratory testing by interpreting user instructions and executing actions such as clicks and text input, leveraging advanced models like GPT-4 for understanding and processing tasks.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Owloops Owloops
ID kojnjjbhkfcpjhppocjocdkjkbbkhimh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/owloops/kojnjjbhkfcpjhppocjocdkjkbbkhimh
คำอธิบาย Owloops extension for exporting Owloops tests from DevTools recorder and AI browser automation.
ขนาดไฟล์ 1.78 MB
จำนวนการติดตั้ง 154
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2024-02-22
วันที่เผยแพร่ 2022-12-15
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://owloops.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.owloops.com
URL หน้านโยบายความเป็นส่วนตัว https://www.owloops.com/privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Owloops extension for exporting Owloops tests from DevTools recorder and AI browser automation.",
    "version": "0.3.0",
    "manifest_version": 3,
    "name": "Owloops",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "clipboardWrite",
        "debugger",
        "management"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon_32.png",
        "default_title": "Owloops Chrome Extention"
    },
    "minimum_chrome_version": "112.0.5569.0",
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "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_32.png"
            ],
            "matches": []
        }
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            }
        }
    }
}