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.js 771B

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