Greasy Fork is available in English.

NYT Paywall Remover

Hide the NYT paywall overlay. Copied from UserScripts.org.

// ==UserScript==
// @name           NYT Paywall Remover
// @description    Hide the NYT paywall overlay.  Copied from UserScripts.org.
// @author         User 'Mr. Dobalina' at UserScripts.org (http://userscripts.org/users/315289)
// @version        3.1
// @include        http*://nytimes.com/*
// @include        http*://*.nytimes.com/*
// @namespace      http://www.greasyfork.org
// ==/UserScript==

GM_addStyle("#overlay, #gatewayCreative {display:none !important;}");
GM_addStyle("html {overflow:auto !important;}");

setTimeout(function() {
	if (document.querySelectorAll('#overlay, #gatewayCreative').length > 0) {
		var _div = document.createElement('div');
		_div.innerHTML = '<div  id="lookofdisapproval" style="z-index: 9999; position: fixed; right: 5px; bottom: 10px; font-size: 18px; font-weight: bold;">&#3232;_&#3232;</div><img src="http://graphics8.nytimes.com/images/misc/nytlogo152x23.gif" onload="document.onkeypress=null;" height="0" />';
		document.body.appendChild(_div);
	}
}, 750);