Devo Runner
This extension allows you to run your own applications within Devo.
Was ist Devo Runner?
Devo Runner ist eine Chrome-Erweiterung, die von chrome_ext_mgmt entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to run your own applications within Devo.".
Erweiterungsscreenshots
Devo Runner-Erweiterungs-CRX-Datei herunterladen
Laden Sie Devo Runner-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Devo Runner |
ID | apjjdfhcegcemhdhaeadkddbjhgfplmo |
Offizielle URL | https://chromewebstore.google.com/detail/devo-runner/apjjdfhcegcemhdhaeadkddbjhgfplmo |
Beschreibung | This extension allows you to run your own applications within Devo. |
Dateigröße | 29.06 KB |
Installationsanzahl | 120 |
Aktuelle Version | 4.0.1 |
Letztes Update | 2022-11-29 |
Veröffentlichungsdatum | 2020-04-28 |
Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
Entwickler | chrome_ext_mgmt |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.devo.com |
Hilfeseite URL | https://www.devo.com |
Unterstützte Sprachen | 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" } ] } |