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
Eメール [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"
        }
    ]
}