Skribbl RTL

Fixes the way skribbl.io displays hebrew words.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Skribbl RTL
// @author       Mx2
// @version      0.0.2
// @description  Fixes the way skribbl.io displays hebrew words.
// @author       You
// @include      https://skribbl.io/*
// @grant        GM_log
// @website      https://github.com/maormagori/Skribbl-RTL
// @namespace https://greasyfork.org/users/690432
// ==/UserScript==

GM_log("skribbl RTL has started.");

//Fetching the current word node
const currentWordNode = document.getElementById("currentWord");

//The observer config
const config = { characterData: true, childList: true};

//The observer's callback. called each time the inner html of current word changes.
const whenWordChanges = () =>{
    //The chagnged word.
    let word = currentWordNode.innerHTML;

    //Checking if it contains rtl characters. Atm skribbl only has one rtl language which is hebrew.
    if (containsHebrew(word)){
        // If the word contains hebrew characters we change it's direction to rtl.
        currentWordNode.style.direction = "rtl";
    }
    //If the word does not contain rtl characters and the current direction is rtl we change it back to ltr.
    else if(currentWordNode.style.direction === "rtl"){
        currentWordNode.style.direction = "ltr";
    }
}

//Runs a regex test on word and checks if it contains any unicode symbols from hebrew.
const containsHebrew = (word) => {
    return ((/[\u0590-\u05FF]/).test(word));
}

//Initializing the observer.
const observer = new MutationObserver(whenWordChanges);

//Running the observer.
observer.observe(currentWordNode, config);