CodeSpaces Close Confirmation

Ask before you close GitHub or VS Codespaces

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         CodeSpaces Close Confirmation
// @namespace    https://github.com/wei
// @version      0.2
// @description  Ask before you close GitHub or VS Codespaces
// @author       Wei <github@weispot.com>
// @match        https://*.github.dev
// @match        https://online.visualstudio.com/*
// @grant        none
// ==/UserScript==

(function() {
  'use strict';

  window.addEventListener('beforeunload', function (e) {
    e.preventDefault();
    e.returnValue = 'Are you sure?';
  });
})();