Open jhass opened 5 years ago
I only noticed that the popup was back. If that's it, could you try out #52 and let me know if that fixes things? Otherwise what else did you notice?
I also had the sharing bar this morning, now it's gone again.. maybe they're still experimenting there :/
It seems they started minifying the CSS, rendering all matches on class names totally useless. I created this bookmarklet to mitigate the worst (position: fixed banners, dickbar):
javascript:for (const sheet of document.styleSheets) { try { for (const [i, rule] of [...sheet.cssRules.entries()].reverse()) { if (rule.style && rule.style.position == "fixed") { sheet.removeRule(i) } } } catch(e) { if (!(e instanceof DOMException && e.code == e.SECURITY_ERR)) { throw e; } } }
issue confirmed :-(
Same here, they managed to make Medium unreadable again.
I had a userscript for this site (before I discovered MMRA), but I brushed it up real quick due to the "crappening" of medium. Feel free to use it till MMRA is updated.
I don't know how MMRA worked before this update, so I don't really feel comfortable trying to match functionality.
https://github.com/meinhimmel/tampermonkey-scripts/blob/master/medium.js
Any status on this? Seems to be forgotten.
Any update?
I've created a new extension inspired by MMRA.
Here you go: Medium Focus
Looks like they had an update to mitigate against this extension :/