Devo Runner

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

Apa itu Devo Runner?

Devo Runner adalah ekstensi Chrome yang dikembangkan oleh chrome_ext_mgmt, dan fitur utamanya adalah "This extension allows you to run your own applications within Devo.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Devo Runner

Unduh file ekstensi Devo Runner dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Devo Runner Devo Runner
ID apjjdfhcegcemhdhaeadkddbjhgfplmo
URL Resmi https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo
Deskripsi This extension allows you to run your own applications within Devo.
Ukuran File 29.06 KB
Jumlah Instalasi 120
Versi Saat Ini 4.0.1
Terakhir Diperbarui 2022-11-29
Tanggal Publikasi 2020-04-28
Penilaian 4.20/5 Total 5 Penilaian
Pengembang chrome_ext_mgmt
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.devo.com
URL Halaman Bantuan https://www.devo.com
Bahasa yang Didukung 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"
        }
    ]
}