Skip to content

Instantly share code, notes, and snippets.

@Vusys
Created June 18, 2017 16:11
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 Vusys/94108cae94a0cd46e7049123d3926057 to your computer and use it in GitHub Desktop.
Save Vusys/94108cae94a0cd46e7049123d3926057 to your computer and use it in GitHub Desktop.
twitter-no-edge.user.js
// ==UserScript==
// @name Twitter No Edge
// @namespace Vusys
// @include https://twitter.com/
// @version 1
// @grant none
// ==/UserScript==
document.addEventListener("DOMContentLoaded", function(event) {
document.body.className = document.body.className.replace('edge-design', '');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment