Mercurial > ec-userscripts
diff medium-popup-disable.user.js @ 30:d884de13423b
(none)
author | Edho Arief <me@myconan.net> |
---|---|
date | Fri, 20 May 2016 18:06:04 +0000 |
parents | |
children | e18a3d8230c9 |
line wrap: on
line diff
--- /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