30
|
1 // ==UserScript==
|
|
2 // @name Medium popup disable
|
|
3 // @namespace https://myconan.net
|
82
|
4 // @version 1.0.7
|
30
|
5 // @description Strip out Medium's highlighting popup "feature"
|
|
6 // @author nanaya
|
|
7 // @match https://medium.com/*
|
34
|
8 // @match https://blog.medium.com/*
|
30
|
9 // @match https://m.signalvnoise.com/*
|
31
|
10 // @match https://hackernoon.com/*
|
30
|
11 // @grant none
|
82
|
12 // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/medium-popup-disable.user.js
|
30
|
13 // ==/UserScript==
|
|
14
|
108
|
15 (function () {
|
|
16 'use strict';
|
|
17 const popups = document.getElementsByClassName('highlightMenu');
|
85
|
18 const killPopup = function (popup) {
|
108
|
19 popup.style.display = 'none';
|
|
20 };
|
85
|
21 const killPopups = function () {
|
108
|
22 Array.prototype.forEach.call(popups, killPopup);
|
|
23 };
|
|
24 document.addEventListener('click', killPopups);
|
|
25 }).call();
|