// ==UserScript==
// @name Disable Alt+1 on Techolay Sosyal
// @namespace https://techolay.net/sosyal
// @version 1.1
// @description Alt+1 tuş kombinasyonunu engeller ve XenForo ana sayfa yönlendirmesini durdurur
// @author ChatGPT
// @match https://techolay.net/sosyal*
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// Alt+1 tuşuna basılmasını engelle
window.addEventListener('keydown', function(e) {
if (e.altKey && e.key === '1') {
e.preventDefault();
e.stopPropagation();
console.log('Alt+1 devre dışı bırakıldı.');
}
}, true);
// accesskey="1" özniteliğini kaldır
window.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('[accesskey="1"]').forEach(el => el.removeAttribute('accesskey'));
});
})();