Devo Runner

This extension allows you to run your own applications within Devo.

Cos'è Devo Runner?

Devo Runner è un'estensione di Chrome sviluppata da chrome_ext_mgmt, e la sua funzione principale è "This extension allows you to run your own applications within Devo.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Devo Runner

Scarica i file di estensione Devo Runner 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

                        Chrome Extension for Devo Vertical Apps. This extension allows you to debug your app on the Devo web application.

You need to be logged into the webapp. After you log in, you can click on the extension icon and upload your app (bundled in an html file). It will replace the Devo webapp content with you apps content.                    

Informazioni di Base sull'Estensione

Nome Devo Runner Devo Runner
ID apjjdfhcegcemhdhaeadkddbjhgfplmo
URL Ufficiale https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo
Descrizione This extension allows you to run your own applications within Devo.
Dimensione del File 29.06 KB
Conteggio Installazioni 120
Versione Corrente 4.0.1
Ultimo Aggiornamento 2022-11-29
Data di Pubblicazione 2020-04-28
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore chrome_ext_mgmt
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.devo.com
URL della Pagina di Aiuto https://www.devo.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Devo Runner",
    "description": "This extension allows you to run your own applications within Devo.",
    "version": "4.0.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "popup.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Run app"
    },
    "permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "style.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "ltweb.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}