Devo Runner

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

什么是Devo Runner?

Devo Runner是由chrome_ext_mgmt开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to run your own applications within Devo.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Devo Runner扩展crx文件

下载Devo Runner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Devo Runner Devo Runner
ID apjjdfhcegcemhdhaeadkddbjhgfplmo
官方URL https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo
简介 This extension allows you to run your own applications within Devo.
文件大小 29.06 KB
安装次数 120
当前版本 4.0.1
更新时间 2022-11-29
上架时间 2020-04-28
评分 4.20/5 共5次评分
开发者 chrome_ext_mgmt
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.devo.com
帮助页面URL https://www.devo.com
支持的语言 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"
        }
    ]
}