Ctrl+Won't

Prevents accidental Ctrl+W from closing current tab while you are typing something (input/textarea tag is active). You can change the white list of websites (on which this script will be "enabled").

目前為 2024-03-16 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Ctrl+Won't
// @namespace    http://tampermonkey.net/
// @version      2024-03-16
// @description  Prevents accidental Ctrl+W from closing current tab while you are typing something (input/textarea tag is active). You can change the white list of websites (on which this script will be "enabled").
// @author       Andrew15-5
// @match        *://*/*
// @icon         https://i.ytimg.com/vi/Qa5xfIbMaqw/maxresdefault.jpg
// @grant        none
// @license      AGPL-3.0
// ==/UserScript==

(function () {
  'use strict';
  const white_list = [
    'duckduckgo.com',
    'github.com',
    'discord.com',
    'stackoverflow.com',
    'greasyfork.org',
  ];
  if (!white_list.includes(location.hostname)) {
    return;
  }
  addEventListener(
    'beforeunload',
    function (e) {
      if (location.hostname === 'discord.com') {
        if (
          document.activeElement.localName !== 'div' ||
          document.activeElement.getAttribute('role') !== 'textbox'
        ) {
          return;
        }
      } else if (
        !['input', 'textarea'].includes(document.activeElement.localName)
      ) {
        return;
      }
      e.stopPropagation();
      e.preventDefault();
      return false;
    },
    true,
  );
})();