Skip to content

Instantly share code, notes, and snippets.

@innateessence
Created June 29, 2024 07:16
Show Gist options
  • Save innateessence/ea890f61d988bd561aa5d896611a3a95 to your computer and use it in GitHub Desktop.
Save innateessence/ea890f61d988bd561aa5d896611a3a95 to your computer and use it in GitHub Desktop.
Bypass Medium.com paywall [userscript]
// ==UserScript==
// @name Bypass Medium Paywall
// @namespace InnateEssense.bypass_medium_paywall
// @version 0.1
// @description Automatically bypasses medium.com's articles paywalls
// @author InnateEssense
// @license MIT
// @source TODO
// @match medium.com/*
// @icon TODO
// @grant none
// ==/UserScript==
//
// This just automatically bypasses mediums paywall
(function() {
'use strict';
const currentUrl = window.location.href;
const newUrl = "12ft.io/proxy?q=" + encodeURIComponent(currentUrl);
console.debug('[*] Redirecting to bypass paywall');
window.location.href = newUrl;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment