Devo Runner

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

Devo Runner là gì?

Devo Runner là một tiện ích mở rộng Chrome được phát triển bởi chrome_ext_mgmt, và tính năng chính của nó là "This extension allows you to run your own applications within Devo.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Devo Runner

Tải xuống các tệp mở rộng Devo Runner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Devo Runner Devo Runner
ID apjjdfhcegcemhdhaeadkddbjhgfplmo
URL Chính Thức https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo
Mô tả This extension allows you to run your own applications within Devo.
Kích Thước Tệp 29.06 KB
Số Lần Cài Đặt 120
Phiên Bản Hiện Tại 4.0.1
Cập Nhật Lần Cuối 2022-11-29
Ngày Phát Hành 2020-04-28
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển chrome_ext_mgmt
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.devo.com
URL Trang Trợ Giúp https://www.devo.com
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}