init.agi 462 B

123456789101112131415161718192021
  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. SupportFW: true,
  13. LaunchFWDir: "Browser/index.html",
  14. InitFWSize: [720, 480],
  15. SupportedExt: []
  16. }
  17. //Register the module
  18. registerModule(JSON.stringify(moduleLaunchInfo));