This Forum is now reserved to registred users!
Autostart Module
-
Hi Cedric,
thanks again for your impressive work. I just did a small module because i needed a way to start a module directly on startup (for my case it was to open the Browser on startup)
Since I needed to add some lines in Gateway as well (Register, Translate etc) it would be great to add it to your plugins (if you feel like).
Regards,
Björn -
Hi,
your plugin is not an Gateway compliant
sample: Dom is created but GA is NOT readymaybe this recipe can help you:
var recipe = { commands: { "OPEN_BROWSER": { notificationExec: { notification: "EXT_BROWSER-OPEN", payload: "https://www.google.com" } } }, plugins: { onReady: "OPEN_BROWSER" } } exports.recipe = recipe
-
worked like a charm ! Thanks for that !