Untitled

From Sludgy Wigeon, 9 Years ago, written in JavaScript, viewed 501 times.
URL https://p.gaa.st/view/69440879 Shorturl This version of the API has now been deprecated as indicated Embed
Download Paste or View Raw
  1. // ==UserScript==
  2. // @name        Geen oranje
  3. // @namespace   nl.fok.geenoranje
  4. // @description Weg met die oranje nicks. Of eigenlijk alle nicks. Maak ze maar gewoon zwart tijdens het WK.
  5. // @include     http://forum.fok.nl/topic/*
  6. // @version     1
  7. // @grant       none
  8. // ==/UserScript==
  9.  
  10. for (let i of document.getElementsByClassName("username")) {
  11.         i.style.color = "#000000";
  12. }
  13.  

Reply to "Untitled"

Here you can reply to the paste above