Mercurial > ec-userscripts
view medium-popup-disable.user.js @ 31:e18a3d8230c9
(none)
author | Edho Arief <me@myconan.net> |
---|---|
date | Sat, 24 Dec 2016 04:40:27 +0000 |
parents | d884de13423b |
children | 41953e59d06f |
line wrap: on
line source
// ==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/* // @match https://hackernoon.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();