You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

browserLinks.ts 758B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * The URL at which Google Chrome is available for download.
  3. *
  4. * @type {string}
  5. */
  6. export const CHROME = 'https://www.google.com/chrome/';
  7. /**
  8. * The URL at which Chromium is available for download.
  9. *
  10. * @type {string}
  11. */
  12. export const CHROMIUM = 'https://www.chromium.org/';
  13. /**
  14. * The URL at which Microsoft Edge is available for download.
  15. *
  16. * @type {string}
  17. */
  18. export const EDGE
  19. = 'https://www.microsoft.com/en-us/windows/microsoft-edge';
  20. /**
  21. * The URL at which Mozilla Firefox is available for download.
  22. *
  23. * @type {string}
  24. */
  25. export const FIREFOX = 'https://www.getfirefox.com/';
  26. /**
  27. * The URL at which Safari is available for download.
  28. *
  29. * @type {string}
  30. */
  31. export const SAFARI = 'https://support.apple.com/downloads/safari';