NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name NY Times Paywall Bypass
// @license MIT
// @version 0.1
// @description Automatically bypass New York Times paywall.
// @author Samrose Ahmed
// @match https://www.nytimes.com/*
// @run-at document-start
// @grant none
// @updateURL https://openuserjs.org/meta/samrosea/NY_Times_Paywall_Bypass.meta.js
// @downloadURL https://openuserjs.org/install/samrosea/NY_Times_Paywall_Bypass.user.js
// ==/UserScript==
(() => {
'use strict';
if (window.location.hostname === 'www.nytimes.com') {
window.location.hostname = 'www.nytimes.com.';
}
})();