Oxygen

Script recorder for Oxygen Framework.

Cos'è Oxygen?

Oxygen è un'estensione di Chrome sviluppata da CloudBeat, Ltd., e la sua funzione principale è "Script recorder for Oxygen Framework.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Oxygen

Scarica i file di estensione Oxygen in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Oxygen IDE extension for recording web automation scripts.                    

Informazioni di Base sull'Estensione

Nome Oxygen Oxygen
ID ibbmgejonlmocgjnkmabigdgbolcomea
URL Ufficiale https://chromewebstore.google.com/detail/oxygen/ibbmgejonlmocgjnkmabigdgbolcomea
Descrizione Script recorder for Oxygen Framework.
Dimensione del File 43.17 KB
Conteggio Installazioni 1,169
Versione Corrente 0.73.1
Ultimo Aggiornamento 2023-11-25
Data di Pubblicazione 2020-03-08
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore CloudBeat, Ltd.
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}