/*
* @title de-tower
* @description *・゚゚・*:.。..。.:*・゚(n‘∀‘)η゚・*:.。..。.:*・゚゚・*
* @include http://pinktower.com*
* @license MIT License
* @require
*/
// ime.nu
// https://gist.github.com/hitode909/321549
var detower = function (anchor) {
var orig;
if (orig = (anchor.href.match(/pinktower\.com\/\?(.*)/) || [])[1]) {
anchor.href = '//' + orig;
}
}
detower(location); // async on Fx
// <at>include http://*.bbspink.com/*
/*/
Array.prototype.forEach.call(document.querySelectorAll('a[href^="http://pinktower.com"]'), function (link) {
detower(link);
});
//*/