Disable CMD+S

Prevents websites from intercepting the CMD+S (Save) shortcut on Mac

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         Disable CMD+S
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Prevents websites from intercepting the CMD+S (Save) shortcut on Mac
// @author       Ben Whaley
// @grant        none
// @license      MIT
// @match        https://www.example.com
// ==/UserScript==

(function() {
    'use strict';

    function handleKeyDown(event) {
        // Check for CMD+S (metaKey is the Command key on Mac)
        if (event.metaKey && event.key === 's') {
            event.stopPropagation();
            console.log('Tampermonkey script intercepted CMD+S');
        }
    }

    document.addEventListener('keydown', handleKeyDown, true);

    function createCustomEventHandler() {
        const originalAddEventListener = EventTarget.prototype.addEventListener;

        EventTarget.prototype.addEventListener = function(type, listener, options) {
            if (type === 'keydown') {
                const wrappedListener = function(event) {
                    if (event.metaKey && event.key === 's') {
                        return;
                    }
                    return listener.apply(this, arguments);
                };

                return originalAddEventListener.call(this, type, wrappedListener, options);
            }

            return originalAddEventListener.call(this, type, listener, options);
        };
    }

    createCustomEventHandler();

    console.log('Tampermonkey script loaded: CMD+S shortcut interceptor');
})();