Devo Runner
This extension allows you to run your own applications within Devo.
Vad är Devo Runner?
Devo Runner är en Chrome-tillägg utvecklad av chrome_ext_mgmt, och dess huvudfunktion är "This extension allows you to run your own applications within Devo.".
Tilläggsskärmbilder
Ladda ner Devo Runner-förlängningens CRX-fil
Ladda ner Devo Runner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Devo Runner |
ID | apjjdfhcegcemhdhaeadkddbjhgfplmo |
Officiell webbadress | https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo |
Beskrivning | This extension allows you to run your own applications within Devo. |
Filstorlek | 29.06 KB |
Antal Installationer | 120 |
Aktuell Version | 4.0.1 |
Senast Uppdaterad | 2022-11-29 |
Publiceringsdatum | 2020-04-28 |
Betyg | 4.20/5 Totalt 5 Betyg |
Utvecklare | chrome_ext_mgmt |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.devo.com |
Hjälpsida URL | https://www.devo.com |
Stödda Språk | 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" } ] } |