Oxygen

Script recorder for Oxygen Framework.

What is Oxygen?

Oxygen is a Chrome extension developed by CloudBeat, Ltd., and its main feature is "Script recorder for Oxygen Framework.".

Extension Screenshots

screenshot

Download Oxygen Extension CRX File

Download Oxygen extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Oxygen IDE extension for recording web automation scripts.                    

Extension Basic Information

Name Oxygen Oxygen
ID ibbmgejonlmocgjnkmabigdgbolcomea
Official URL https://chromewebstore.google.com/detail/oxygen/ibbmgejonlmocgjnkmabigdgbolcomea
Description Script recorder for Oxygen Framework.
File Size 43.17 KB
Installation Count 1,169
Current Version 0.73.1
Last Updated 2023-11-25
Publish Date 2020-03-08
Rating 5.00/5 Total 3 Ratings
Developer CloudBeat, Ltd.
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Oxygen",
    "version": "0.73.1",
    "description": "Script recorder for Oxygen Framework.",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "icons": {
        "16": "32x32.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "content_scripts": [
        {
            "js": [
                "recorder.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Oxygen Recorder"
    },
    "web_accessible_resources": [
        "recorder.js"
    ]
}