Mercurial > ec-userscripts
view medium-popup-disable.user.js @ 85:9c8cde985caf
Update standard and fix
author | nanaya <me@nanaya.pro> |
---|---|
date | Thu, 15 Apr 2021 15:01:22 +0900 |
parents | 86da34e62d29 |
children | 2c4470b73ad9 |
line wrap: on
line source
// ==UserScript== // @name Medium popup disable // @namespace https://myconan.net // @version 1.0.7 // @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://hg.myconan.net/ec-userscripts/raw-file/tip/medium-popup-disable.user.js // ==/UserScript== ;(function () { 'use strict' const popups = document.getElementsByClassName('highlightMenu') const killPopup = function (popup) { popup.style.display = 'none' } const killPopups = function () { Array.prototype.forEach.call(popups, killPopup) } document.addEventListener('click', killPopups) }).call()