forked from Mardaneus86/futwebapp-tampermonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisable-clickshield.user.js
21 lines (21 loc) · 988 Bytes
/
disable-clickshield.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// ==UserScript==
// @name FUT Disable Clickshield
// @version 0.1.1
// @description Removes the black shield screen when an action is running. Especially useful when running the other FUT scripts that perform requests in the background
// @license MIT
// @author Tim Klingeleers
// @match https://www.easports.com/fifa/ultimate-team/web-app/*
// @match https://www.easports.com/*/fifa/ultimate-team/web-app/*
// @namespace https://github.com/Mardaneus86
// @updateURL https://raw.githubusercontent.com/Mardaneus86/futwebapp-tampermonkey/master/disable-clickshield.user.js
// @downloadURL https://raw.githubusercontent.com/Mardaneus86/futwebapp-tampermonkey/master/disable-clickshield.user.js
// @supportURL https://github.com/Mardaneus86/futwebapp-tampermonkey/issues
// ==/UserScript==
// ==OpenUserJS==
// @author Mardaneus86
// ==/OpenUserJS==
(function() {
'use strict';
components.ClickShield.prototype.showShield = function(t) {
};
})();