Greasy Fork is available in English.

Crosshair Cursor

Changes the cursor to a crosshair when on the Arras.io website

// ==UserScript==
// @name         Crosshair Cursor
// @namespace    https://arras.io
// @version      0.1
// @description  Changes the cursor to a crosshair when on the Arras.io website
// @author       Scripter
// @match        https://arras.io/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // change the cursor to a crosshair
    document.body.style.cursor = "crosshair";
})();