init.agi 408 B

12345678910111213141516171819
  1. /*
  2. Browser Bookmarking Module Register Script
  3. */
  4. //Setup the module information
  5. var moduleLaunchInfo = {
  6. Name: "Browser",
  7. Desc: "A simple web browser like bookmarking app",
  8. Group: "Office",
  9. IconPath: "Browser/img/module_icon.png",
  10. Version: "1.0",
  11. StartDir: "Browser/index.html",
  12. InitFWSize: [720, 480],
  13. SupportedExt: []
  14. }
  15. //Register the module
  16. registerModule(JSON.stringify(moduleLaunchInfo));