Genshin Cloud Mouse Fix

Fix a Genshin cloud game mouse move bug

  1. // ==UserScript==
  2. // @name Genshin Cloud Mouse Fix
  3. // @namespace https://www.bilibili.com/read/cv26576757/
  4. // @version 0.1
  5. // @description Fix a Genshin cloud game mouse move bug
  6. // @match https://ys.mihoyo.com/cloud/*
  7. // @grant none
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13.  
  14. const origin = HTMLElement.prototype.requestPointerLock
  15. HTMLElement.prototype.requestPointerLock = function () {
  16. return origin.call(this)
  17. }
  18. })();