Devo Runner

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

Wat is Devo Runner?

Devo Runner is een Chrome-extensie ontwikkeld door chrome_ext_mgmt, en de belangrijkste functie is "This extension allows you to run your own applications within Devo.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Devo Runner

Download Devo Runner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Devo Runner Devo Runner
ID apjjdfhcegcemhdhaeadkddbjhgfplmo
Officiële URL https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo
Beschrijving This extension allows you to run your own applications within Devo.
Bestandsgrootte 29.06 KB
Aantal Installaties 120
Huidige Versie 4.0.1
Laatst Bijgewerkt 2022-11-29
Publicatiedatum 2020-04-28
Beoordeling 4.20/5 Totaal 5 Beoordelingen
Ontwikkelaar chrome_ext_mgmt
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.devo.com
Help Pagina-URL https://www.devo.com
Ondersteunde Talen 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"
        }
    ]
}