2011-03-30

増田キーワードリンク無効化user.js Opera

// ==UserScript==
// @name keywordlink-buster
// @include http://anond.hatelabo.jp/*
// @exclude http://anond.hatelabo.jp/*/edit
// ==/UserScript==
(function (){
  var init = function() {
    var anc = document.querySelectorAll('div.section a.keyword');
    for (var i = 0, a; a = anc[i]; i++) {
      a.parentNode.replaceChild(document.createTextNode(a.innerText), a);
    }
  }
  window.addEventListener('DOMContentLoaded',init,false);
})();

記事への反応(ブックマークコメント)

ログイン ユーザー登録
ようこそ ゲスト さん