Devo Runner

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

What is Devo Runner?

Devo Runner is a Chrome extension developed by chrome_ext_mgmt, and its main feature is "This extension allows you to run your own applications within Devo.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Devo Runner Extension CRX File

Download Devo Runner 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

                        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.                    

Extension Basic Information

Name Devo Runner Devo Runner
ID apjjdfhcegcemhdhaeadkddbjhgfplmo
Official URL https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo
Description This extension allows you to run your own applications within Devo.
File Size 29.06 KB
Installation Count 120
Current Version 4.0.1
Last Updated 2022-11-29
Publish Date 2020-04-28
Rating 4.20/5 Total 5 Ratings
Developer chrome_ext_mgmt
Email [email protected]
Payment Type free
Extension Website https://www.devo.com
Help Page URL https://www.devo.com
Supported Languages 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"
        }
    ]
}