New script - reactjs.org

9/7/2020, 3:03:49 PM

// ==UserScript==
// @name        New script - reactjs.org
// @namespace   Violentmonkey Scripts
// @match       https://reactjs.org/
// @grant       none
// @version     1.0
// @author      -
// @description 9/7/2020, 3:03:49 PM
// ==/UserScript==

setInterval(() => {

  const $BLMdiv = document.querySelector(".css-f5odvb");
  if(/^Black/.test($BLMdiv.innerText)){
    $BLMdiv.innerHTML = $BLMdiv.innerHTML.replace("Black", "All Black");
    $BLMdiv.removeChild($BLMdiv.querySelector("a"))
  }
}, [1000])