Mercurial > ec-userscripts
diff medium-popup-disable.user.js @ 109:ef21ef445fc6
Cleanups
- wrap everything in function and call them last
- fix namespace and update url
author | nanaya <me@nanaya.net> |
---|---|
date | Sun, 15 Jan 2023 23:33:41 +0900 |
parents | 2c4470b73ad9 |
children | d9dc190bccaf |
line wrap: on
line diff
--- a/medium-popup-disable.user.js Sun Jan 15 23:24:03 2023 +0900 +++ b/medium-popup-disable.user.js Sun Jan 15 23:33:41 2023 +0900 @@ -1,6 +1,6 @@ // ==UserScript== // @name Medium popup disable -// @namespace https://myconan.net +// @namespace https://nanaya.net // @version 1.0.7 // @description Strip out Medium's highlighting popup "feature" // @author nanaya @@ -9,11 +9,12 @@ // @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 +// @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/medium-popup-disable.user.js // ==/UserScript== -(function () { - 'use strict'; +'use strict'; + +function removeHighlightPopup () { const popups = document.getElementsByClassName('highlightMenu'); const killPopup = function (popup) { popup.style.display = 'none'; @@ -22,4 +23,6 @@ Array.prototype.forEach.call(popups, killPopup); }; document.addEventListener('click', killPopups); -}).call(); +} + +removeHighlightPopup();