Remove NicoNicoPedia Internal Links

Clean off all the links to other articles in NicoNicoPedia.

  1. // ==UserScript==
  2. // @name Remove NicoNicoPedia Internal Links
  3. // @namespace yama-masa.com
  4. // @description Clean off all the links to other articles in NicoNicoPedia.
  5. // @include http://dic.nicovideo.jp/*
  6. // @version 1.1
  7. // @grant none
  8. // ==/UserScript==
  9. (function(){
  10. Array.forEach(
  11. document.body.querySelectorAll('a.auto,a.auto-hdn,a.dic'), function(ele) {
  12. ele.parentNode.replaceChild(ele.firstChild, ele)
  13. })
  14. })();