Skip to content

Instantly share code, notes, and snippets.

@GarnetSunset
Last active May 10, 2019 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GarnetSunset/749748f304a904794de795b2299a9821 to your computer and use it in GitHub Desktop.
Save GarnetSunset/749748f304a904794de795b2299a9821 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Disable Websockets
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
if (window) {
delete window.WebSocket;
if ('WebSocket' in window) {
window.WebSocket = undefined;
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment