Owloops

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

Owloops là gì?

Owloops là một tiện ích mở rộng Chrome được phát triển bởi https://owloops.com, và tính năng chính của nó là "Owloops extension for exporting Owloops tests from DevTools recorder and AI browser automation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Owloops

Tải xuống các tệp mở rộng Owloops dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Owloops Owloops
ID kojnjjbhkfcpjhppocjocdkjkbbkhimh
URL Chính Thức https://chromewebstore.google.com/detail/owloops/kojnjjbhkfcpjhppocjocdkjkbbkhimh
Mô tả Owloops extension for exporting Owloops tests from DevTools recorder and AI browser automation.
Kích Thước Tệp 1.78 MB
Số Lần Cài Đặt 154
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2024-02-22
Ngày Phát Hành 2022-12-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://owloops.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.owloops.com
URL Trang Chính Sách Bảo Mật https://www.owloops.com/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}