Owloops

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

什麼是Owloops?

Owloops是由https://owloops.com開發的Chrome擴展程式,該擴展的主要功能是“Owloops extension for exporting Owloops tests from DevTools recorder and AI browser automation.”。

擴展截圖

screenshot

下載Owloops擴展crx文件

下載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
官方網址 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"
            }
        }
    }
}