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 <[email protected]>
// @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?';
  });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址