Mercurial > ec-userscripts
view medium-popup-disable.user.js @ 66:444b17e657be
Standardize code style
author | nanaya <me@nanaya.pro> |
---|---|
date | Wed, 10 Jul 2019 22:36:31 +0900 |
parents | 3381a9cb88d1 |
children | 521dda0a0b6f |
line wrap: on
line source
// ==UserScript== // @name Medium popup disable // @namespace https://myconan.net // @version 1.0.4 // @description Strip out Medium's highlighting popup "feature" // @author nanaya // @match https://medium.com/* // @match https://blog.medium.com/* // @match https://m.signalvnoise.com/* // @match https://hackernoon.com/* // @grant none // @downloadURL https://bitbucket.org/nanayapro/ec-userscripts/raw/tip/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()