# HG changeset patch # User Edho Arief # Date 1463767564 0 # Node ID d884de13423bc79deea5e278a9d09688f4749684 # Parent d467e1e0ec98c88a58bade5fab867ba291258c40 diff -r d467e1e0ec98 -r d884de13423b medium-popup-disable.user.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/medium-popup-disable.user.js Fri May 20 18:06:04 2016 +0000 @@ -0,0 +1,23 @@ +// ==UserScript== +// @name Medium popup disable +// @namespace https://myconan.net +// @version 1.0.0 +// @description Strip out Medium's highlighting popup "feature" +// @author nanaya +// @match https://medium.com/* +// @match https://m.signalvnoise.com/* +// @grant none +// @downloadURL https://bitbucket.org/!api/2.0/snippets/nanaya1/TK64/tip/files/medium-popup-disable.user.js +// ==/UserScript== + +;(function() { + 'use strict'; + var popups = document.getElementsByClassName("highlightMenu"); + var killPopup = function(popup) { + popup.style.display = 'none'; + }; + var killPopups = function() { + Array.prototype.forEach.call(popups, killPopup); + }; + document.addEventListener('click', killPopups); +}).call(); \ No newline at end of file