Devo Runner

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

ما هو Devo Runner؟

Devo Runner هو إضافة Chrome تم تطويرها بواسطة chrome_ext_mgmt، والميزة الرئيسية لها هي "This extension allows you to run your own applications within Devo.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Devo Runner

قم بتنزيل ملفات الامتداد Devo Runner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        }
    ]
}