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.”。
擴展截圖
下載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 |
ID | apjjdfhcegcemhdhaeadkddbjhgfplmo |
官方網址 | 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" } ] } |