30
|
1 // ==UserScript==
|
|
2 // @name Medium popup disable
|
109
|
3 // @namespace https://nanaya.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
|
109
|
12 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/medium-popup-disable.user.js
|
30
|
13 // ==/UserScript==
|
|
14
|
109
|
15 'use strict';
|
|
16
|
|
17 function removeHighlightPopup () {
|
108
|
18 const popups = document.getElementsByClassName('highlightMenu');
|
85
|
19 const killPopup = function (popup) {
|
108
|
20 popup.style.display = 'none';
|
|
21 };
|
85
|
22 const killPopups = function () {
|
108
|
23 Array.prototype.forEach.call(popups, killPopup);
|
|
24 };
|
|
25 document.addEventListener('click', killPopups);
|
109
|
26 }
|
|
27
|
|
28 removeHighlightPopup();
|