init.agi 441 B

1234567891011121314151617181920
  1. /*
  2. Message - Quick chatroom tool for ArozOS
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Message",
  7. Desc: "Maybe the best messenging app on ArozOS",
  8. Group: "Office",
  9. IconPath: "Message/img/module_icon.png",
  10. Version: "1.0",
  11. StartDir: "Message/index.html",
  12. SupportFW: true,
  13. InitFWSize: [340, 630],
  14. SupportedExt: []
  15. }
  16. //Register the module
  17. registerModule(JSON.stringify(moduleLaunchInfo));