[in beta-testing] Gats.io right click for spacebar

This script is under developpement. an old version of it works but not for shield here: https://greasyfork.org/fr/scripts/433998-in-beta-testing-gats-io-right-click-for-spacebar?version=987557. I'm currently having issues with the mouse event, google chome has changed it to pointer and it is not easy to handle it but i'm trying my best.

2022/09/19のページです。最新版はこちら。

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
  1. // ==UserScript==
  2. // @name [in beta-testing] Gats.io right click for spacebar
  3. // @version 2.3.2
  4. // @description This script is under developpement. an old version of it works but not for shield here: https://greasyfork.org/fr/scripts/433998-in-beta-testing-gats-io-right-click-for-spacebar?version=987557. I'm currently having issues with the mouse event, google chome has changed it to pointer and it is not easy to handle it but i'm trying my best.
  5. // @author Rayan223
  6. // @match https://gats.io
  7. // @icon none
  8. // @grant none
  9. // @license MIT
  10. // @namespace https://greasyfork.org/users/825882
  11. // ==/UserScript==
  12.  
  13. document.body.insertAdjacentHTML("beforebegin",'<div><p id="text">None</p></div>')
  14.  
  15. canvas = document.getElementById('canvas')
  16. canvas.addEventListener('mousedown', e => {
  17. document.getElementById('text').textContent = e
  18. })