switch to chrome due to using habit differences.

This commit is contained in:
2025-12-13 00:40:49 +08:00
parent 3fa8251a7f
commit fe4232ec8e
3 changed files with 19 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
// ==UserScript==
// @name Genshin Cloud
// @namespace http://tampermonkey.net/
// @version 0.1
// @description fix a Genshin Impact cloud game bug
// @match https://*.mihoyo.com/cloud/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
const origin = HTMLElement.prototype.requestPointerLock
HTMLElement.prototype.requestPointerLock = function () {
return origin.call(this)
}
})();