AWBW game notes

Add a simple note function to matches

28.01.2024 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         AWBW game notes
// @namespace    https://awbw.amarriner.com/
// @version      1.02
// @description  Add a simple note function to matches
// @author       Truniht
// @match        https://awbw.amarriner.com/*?games_id=*
// @match        https://awbw.amarriner.com/*?replays_id=*
// @icon         https://awbw.amarriner.com/favicon.ico
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_addValueChangeListener
// @license      MIT
// ==/UserScript==

var gameID = window.location.href.match(/_id=([0-9]+)/)[1];

var noteValue = GM_getValue('AWBWNote' + gameID) || '';

var ele = document.createElement('textarea');
ele.style.width = '100%';
ele.style.background = 'rgb(250, 250, 221)';
ele.style.color = '#000000';
ele.spellcheck = false;

function resizeEle() {
    if (ele.clientHeight + 10 < ele.scrollHeight) ele.style.height = ele.scrollHeight + 'px';
}

if (noteValue) ele.value = noteValue;

var saveTimeout = 0;
function saveText() {
    GM_setValue('AWBWNote' + gameID, ele.value);
}

ele.oninput = function(e) {
    clearTimeout(saveTimeout);
    saveTimeout = setTimeout(saveText, 500);
    resizeEle();
}

GM_addValueChangeListener('AWBWNote' + gameID, function(name, old_value, new_value, remote) {
    if (remote) ele.value = new_value;
});

//Stop default keybindings
function preventK(e) {
    e.stopPropagation();
}
ele.addEventListener('keydown', preventK);
ele.addEventListener('keyup', preventK);
ele.addEventListener('keypress', preventK);

function loadNotes() {
    var mainEle = (document.querySelector('.game-player-info') || document.querySelector('.awbwenhancements-sidebar-entry'));
    if (!mainEle) return false;
    mainEle.appendChild(ele);
    mainEle.style.height = '';
    resizeEle();

    const observer = new MutationObserver(function() {
        observer.disconnect();
        if (mainEle.lastChild !== ele) mainEle.appendChild(ele);
        mainEle.style.height = '';
        observer.observe(mainEle, { childList: true, attributes: true});
   });
    observer.observe(mainEle, { childList: true, attributes: true});
    return true;
}

if (!loadNotes()) window.addEventListener('load', loadNotes);