Greasy Fork is available in English.

Genshin Cloud Mouse Fix

Fix a Genshin cloud game mouse move bug

// ==UserScript==
// @name         Genshin Cloud Mouse Fix
// @namespace    https://www.bilibili.com/read/cv26576757/
// @version      0.1
// @description  Fix a Genshin cloud game mouse move bug
// @match        https://ys.mihoyo.com/cloud/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  const origin = HTMLElement.prototype.requestPointerLock
  HTMLElement.prototype.requestPointerLock = function () {
    return origin.call(this)
  }
})();