OWO

OWO?

  1. // ==UserScript==
  2. // @name OWO
  3. // @namespace
  4. // @version 1s
  5. // @description OWO?
  6. // @author Eutro
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var node, walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT);while(node = walker.nextNode()) node.nodeValue = node.nodeValue.replace(/[lr]/g, "w").replace(/[LR]/g, "W").replace(/(\w|^)s(\W|$)/g, "$1th$2").replace(/([nNmM])([ao])/g, "$1y$2").replace(/( |^)(\w)/g, function (g0, g1, g2) { return Math.random() < 0.15? g1+g2+"-"+g2 : g0 });