init.agi 587 B

123456789101112131415161718192021222324252627
  1. /*
  2. PDF Viewer
  3. Copyright 2012 Mozilla Foundation
  4. ArozOS adaptive layer added by tobychui 2021
  5. See viewer.html for license information
  6. */
  7. //Define the launchInfo for the module
  8. var moduleLaunchInfo = {
  9. Name: "PDF Viewer",
  10. Desc: "Possibly the best PDF viewer on the web",
  11. Group: "Utilities",
  12. IconPath: "PDF Viewer/icons/module_icon.png",
  13. Version: "2.7.570",
  14. StartDir: "",
  15. SupportFW: false,
  16. LaunchEmb: "PDF Viewer/viewer.html",
  17. SupportEmb: true,
  18. InitEmbSize: [1024, 768],
  19. SupportedExt: [".pdf"]
  20. }
  21. //Register the module
  22. registerModule(JSON.stringify(moduleLaunchInfo));