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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Devo Runner
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
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" } ] } |