Devo Runner
This extension allows you to run your own applications within Devo.
Hvad er Devo Runner?
Devo Runner er en Chrome-udvidelse udviklet af chrome_ext_mgmt, og dens hovedfunktion er "This extension allows you to run your own applications within Devo.".
Udvidelsesskærmbilleder
Download Devo Runner-udvidelses-CRX-fil
Download Devo Runner-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Devo Runner |
ID | apjjdfhcegcemhdhaeadkddbjhgfplmo |
Officiel URL | https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo |
Beskrivelse | This extension allows you to run your own applications within Devo. |
Filstørrelse | 29.06 KB |
Antal Installationer | 120 |
Nuværende Version | 4.0.1 |
Senest Opdateret | 2022-11-29 |
Udgivelsesdato | 2020-04-28 |
Bedømmelse | 4.20/5 Samlet 5 Bedømmelser |
Udvikler | chrome_ext_mgmt |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://www.devo.com |
Hjælpeside-URL | https://www.devo.com |
Understøttede Sprog | 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" } ] } |