NapalmRiot - no graphical emotes

By Matthias Bauer Last update Feb 24, 2008 — Installed 41 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           NapalmRiot - no graphical emotes
// @namespace      net.moeffju
// @description    Disable graphical emotes on napalmriot
// @include        http://*.napalmriot.com/*
// ==/UserScript==

function degraphify() {
  var emotes = document.evaluate(
    '//img[@class="em"]', 
    document, 
    null, 
    XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
    null
  );

  for (var i=0; i<emotes.snapshotLength; i++) {
    var node = emotes.snapshotItem(i);
    node.parentNode.replaceChild(document.createTextNode(node.getAttribute('alt')), node);
  }
}

degraphify();
window.addEventListener('DOMSubtreeModified', degraphify, true);