Как в Chrome отключить хоткей Ctrl+D?
Привет. Пробовал через tampermonkey - не помогло
// ==UserScript==
// @name Disable Ctrl+D
// @namespace http://tampermonkey.net/
// @version 2024-11-20
// @description Отключение сочетания клавиш Ctrl+D (или Cmd+D на macOS) на всех страницах
// @author You
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Слушаем событие нажатия клавиш
document.addEventListener('keydown', function(e) {
// Проверяем сочетание клавиш: Ctrl+D или Cmd+D
if ((e.ctrlKey || e.metaKey) && e.key.toLowerCase() === 'd') {
e.preventDefault(); // Останавливаем действие по умолчанию
console.log('Сочетание клавиш Ctrl+D или Cmd+D заблокировано.');
}
});
})();