Modern Medium GUI with multiple bypass services.
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.
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址
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.