Greasy Fork is available in English.

biglistofwebsites direct urls

Makes urls open directly

// ==UserScript==
// @name          biglistofwebsites direct urls
// @description   Makes urls open directly
// @include       http://biglistofwebsites.com/*
// @include       http://biglistofwebsites.com/list-top*
// @version       1.0.2
// @author        wOxxOm
// @namespace     wOxxOm.scripts
// @license       MIT License
// @grant         none
// @run-at        document-start
// @require       https://greasyfork.org/scripts/12228/code/setMutationHandler.js
// ==/UserScript==

setMutationHandler(document, 'a[href*="go/"]', function(nodes) {
  nodes.forEach(function(n) {
    n.href = n.href.replace(/^(|.+?\/)go/, 'http://');
  });
  return true;
});