MMRA icon indicating copy to clipboard operation
MMRA copied to clipboard

Everything is back

Open jhass opened this issue 5 years ago • 10 comments

Looks like they had an update to mitigate against this extension :/

jhass avatar Jun 07 '19 09:06 jhass

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?

thebaer avatar Jun 07 '19 12:06 thebaer

I also had the sharing bar this morning, now it's gone again.. maybe they're still experimenting there :/

jhass avatar Jun 07 '19 13:06 jhass

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; } } }

liskin avatar Jun 26 '19 21:06 liskin

issue confirmed :-(

Mte90 avatar Jul 04 '19 12:07 Mte90

Same here, they managed to make Medium unreadable again.

laurent22 avatar Jul 12 '19 14:07 laurent22

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

dylanarmstrong avatar Jul 13 '19 14:07 dylanarmstrong

Any status on this? Seems to be forgotten.

darkf avatar Sep 07 '19 05:09 darkf

Any update?

RodolfoGS avatar Feb 14 '20 15:02 RodolfoGS

I am using https://addons.mozilla.org/it/firefox/addon/medium-fixer/

Mte90 avatar Feb 14 '20 15:02 Mte90

I've created a new extension inspired by MMRA.

Here you go: Medium Focus

haykerman avatar Feb 23 '22 20:02 haykerman