view medium-popup-disable.user.js @ 63:53d0f935ecb8

Fix orig might be in different format
author nanaya <me@nanaya.pro>
date Wed, 10 Jul 2019 22:26:12 +0900
parents 3381a9cb88d1
children 444b17e657be
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();