Modern Medium GUI with multiple bypass services.
< Feedback on Medium Member Bypass
updated
Oh it's perfect now.
Remove the -
// @match *://*/*
It matches every website which is not needed. The userscript must work only on Medium pages, not on every page. It is redundant.
What about devopsquare.com, blog.devops.dev, blog.stackademic.com, ai.plainenglish.io, bettermarketing.pub and etc? It's impossible for us to say how many Medium sites there are.
Hmm, fair point. My bad. I couldn't find any other ways to sniff it out either. Good userscript though.
The code matching is set to all websites which is redundant. It should be made
// @match *://medium.com/*
// @match *://*.medium.com/*
if possible instead of every link.