JSFiddle - React, Tailwind, and code Playground
by ethertank
JavaScript
// ==UserScript==
// @name 2ch Add Killer
// @namespace http://ethertank.jp
// @version 0.1
// @description 推して知るべし
// @include http://www.logsoku.com/*
// @include http://*2ch.net/*
// @copyright 2013+, ethertank
// ==/UserScript==
window.addEventListener("load", function() {
var L = document.links,
i;
for (i = 0; i < L.length; i++) {
L[i].href = L[i].href.replace(/ime\.nu\/|http:\/\/l\.moapi\.net\//g, '');
}
}, false);