// ==UserScript== // @name sketchfab.com - Remove gamepads support // @namespace x4fab_sffixed // @version 0.1 // @description Removes gamepads support because it's broken // @author x4fab // @match https://sketchfab.com/* // @grant none // @license CC0 // @downloadURL https://update.greasyfork.cloud/scripts/11767/sketchfabcom%20-%20Remove%20gamepads%20support.user.js // @updateURL https://update.greasyfork.cloud/scripts/11767/sketchfabcom%20-%20Remove%20gamepads%20support.meta.js // ==/UserScript== navigator.getGamepads = function (){ return [] }; navigator.webkitGetGamepads = function (){ return [] };