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.

7 lines
332 B

  1. // All of the Node.js APIs are available in the preload process.
  2. // It has the same sandbox as a Chrome extension.
  3. window.addEventListener('DOMContentLoaded', () => {
  4. for (const versionType of ['chrome', 'electron', 'node']) {
  5. document.getElementById(`${versionType}-version`).innerText = process.versions[versionType]
  6. }
  7. })