Hacker News new | past | comments | ask | show | jobs | submit login
Make Medium Readable Again (chrome.google.com)
297 points by thangngoc89 on March 4, 2018 | hide | past | favorite | 180 comments



I've been using a bookmarklet that simply removes all fixed-position elements from the page; it makes Medium and plenty of other sites tolerable.

This is it:

  javascript:(function()%7B(function%20()%20%7Bvar%20i%2C%20elements%20%3D%20document.querySelectorAll('body%20*')%3Bfor%20(i%20%3D%200%3B%20i%20%3C%20elements.length%3B%20i%2B%2B)%20%7Bif%20(getComputedStyle(elements%5Bi%5D).position%20%3D%3D%3D%20'fixed')%20%7Belements%5Bi%5D.parentNode.removeChild(elements%5Bi%5D)%3B%7D%7D%7D)()%7D)()



I forked a greasemonkey version of removing fixed position elements; kill sticky didn't work for everything in my case: https://gist.github.com/petermolnar/ccbf9eb3675f2cd808a12eb1...


Thanks for that, I'd forgotten where I got it in the first place.


I've been using that for a while also. I'm mildly surprised someone found it worth their time to make an extension, it works so well for medium and other sites.


Hum, any ways to make it work with Safari IOS?


look at “unobstruct” on the app store as well.


You don't need it in Mobile Safari. Tap the paragraph icon to the left of the address bar and it'll go into Reader View, which eliminates all that rubbish.


Or long-press on it and select Automatically use reader mode on this site.


Hum the main issues are e-commerce websites that are recognized by the reader feature.


You can long-press to have it always off for a site too.

If you have a Mac, you can configure Safari there to default to a setting, say using reader mode automatically or autoplay videos.

It seems these settings are shared with mobile Safari.

And then you can override these settings per site in Mac Safari, and only the reader mode setting in mobile Safari.

A bit weird that you can't do it all in mobile Safari, it doesn't feel finished.


Unfortunately Medium has some specific problems, besides fixed elements, that make it user-unfriendly, for example the lazy loading "feature". OP's extension can fix that.


As a serial selecter, I wish it would get rid of the popup when you select text. https://imgur.com/G5x0U9P


Fellow serial selector here. Is there a formal name for what we do?



Not a name, but many people do this to help them focus and read. Having a smallish block of selected text enables easier visual tracking (so less likely to skip/repeat lines). It is more common in the ADHD and dyslexia communities, in my experience.


Color coding works too.


How do you mean? Syntax-based or something else?


At paragraph breaks, one or more paragraphs, comparable chunk size, pastel colors so there’s some difference/contrast but not too much.


Can you send a screenshot? I am the creator of a tool [1] that uses color to aid visual focus, so I’m very curious to see what the approach you’re describing looks like.

1: http:www.beelinereader.com/individual


Something like the colored blocks in this spec: https://www.w3.org/TR/pwp/

I've seen your tool before. For high speed reading (> 500 wpm), block-level colors are more useful than sentence-level colors.


Would love to connect to hear more about your experience and perspective. If you have a minute, please drop a line: contact at companydomain. Thanks for the pointer!


I do the same, and I think it originated back when I had a mouse with no scroll wheel. Dragging a text selection up and down to the top and bottom edges of the viewport let you scroll up and down by arbitrary distances. I'd call this "selection scrolling?"

The thing I do nowadays rarely involves scrolling, though, so it's probably just "digital fidgeting."


Transitioned from dev to management. Amount of micro-distractions is so high that it's a convenient micro-bookmarking tool. It's also an aid against scroll jank from loading pages / delayed banners / what not. In some cases I also just click page to ensure focus is in there, because of some pages having niché scrolling methods that require click-to-focus before pressing any scrolling hotkeys (up/down, space, page up/down, etc) will work.


OMG I have found my people.


Me too! I thought it was just me...


:hug:


If you use ublock origin or similar, block the following element: ##.highlightMenu


I think the extension should handle this too. It's to annoying to pass on


Absolutely -- feel free to submit a GitHub issue and I'll take care of it: https://github.com/thebaer/MMRA


Oh man. I stopped reading Medium blogs because they have that inane selection-popup bullshit. I'm not going back but you do have my love for implementing that :)


Install Stylish or Stylebot, create a new style:

.highlightMenu { display: none!important; }

Stylish - https://addons.mozilla.org/en-US/firefox/addon/stylish/

Stylebot - https://chrome.google.com/webstore/detail/stylebot/oiaejidbm...

Sorry if this has been answered already, didn't have time to read through replies.


Hey, creator here. This is also available for Firefox: https://addons.mozilla.org/en-US/firefox/addon/make-medium-r...

And feel free to suggest any improvements, or submit a pull request on GitHub! https://github.com/thebaer/MMRA


Thank you for making this, in particular thank you for the "disable lazy loading" option, which I have always found annoying when I'm on a slow connection (which is very often since I'm in Australia).


I hate scroll-based lazy loading of images. It’s bad enough when latency is merely high, as is commonly the case for such things for us in Australia, but it’s actively hostile to unreliable internet connections. When I know I’m not going to have an internet connection, I used to be able to just load pages, and know that they’d be there when I got to them. But with lazily loaded images? Nope.

(Non-scroll-based deferred loading of images is not necessarily bad, though I don’t see much purpose in it.)


As a developer that recently implemented lazy loading of inages, the goal is simple: getting the site interactive and usable as fast as possible.

Most users stop reading without ever scrolling down, having already made a decision yes or no.

So loading the content after scrolling down uses more of that users data plan, and makes the site load slower.

That said, I simply replace the thumbnail with the actual image as soon as it scrolls into the view, and let the browser do its own thing.


Have you tried lazy loading as it is implemented specifically in Medium, while on a slow connection? (Just head out to Medium, find a post that has several pictures, and then you can simulate being a slow connection using developer tools). Basically the previews are completely useless (just an unintelligible, extremely blurry splash of colour without shape or form) and they are not progressive (not many intermediate steps between the initial splash of colour and the final picture, so you have to wait a long time anyway to even figure out if you are interested into that particular picture or not), in addition it seems to be computationally expensive (whild guess: perhaps because of the overdone gaussian blur effect), which you notice when you try to scroll and the scroll motion becomes choppy (even though I'm on a gaming PC with decent specs). I much prefer the "blocky" look that many other lazy loading solutions have, rather than the blurry look in Medium, because with the blocky look you are more likely to guess what's depicted in the photo.


Using non-progressive images with a blur is standard practice though, with little alternative.

Because you often want to use png or webp for the final image, instead of jpg (and these formats are non-progressive), and loading of progressive content can’t be controlled by scrolling.

As for that blur, medium definitely overdoes it with that, doing it on the canvas and all.

This is what my site looks like before lazy loading: https://i.imgur.com/O9YjU7o.png and I’m usually testing it on 3G and 2G to test performance – every image is available with srcset in countless versions so your browser can additionally choose which version it wants to show.

I’m always interested in improving this.


I would rather see nothing, or a solid block of colour, than a very blurred image; I have heard this opinion espoused by others as well when the topic comes up. A blurred image, especially with a sharp edge, is surprisingly disconcerting, and having the content change while you’re looking at it too.

I wish people would just leave it to the browser to handle, and I wish that browsers would start improving their approach to this sort of thing so that developers don’t feel the need to mess around with it, because they always get it wrong.

Let me be absolutely clear on this: I hate all scroll-based lazy loading of images.


Solid color isn't actually too bad of an idea, I'll look into that.

That said, if you disable JS, your browser will load all the images, and that's not exactly ideal itself for most people (the page loads ~10x longer)


Images load in the background, while the page is already usable.

Browsers could still help a lot with better efficient image loading, but the default is not all that bad.


Thanks for the insights (I have never implemented lazy loading myself so it's interesting to read about it).

> As for that blur, medium definitely overdoes it with that, doing it on the canvas and all.

Yeah I find it really hostile from a UX point of view.

P.S. I just looked at your imgur and the ones that are more intelligible to me are the smaller pictures in the bottom raw, while I wouldn't be able to say what's in the first two larger pictures (interestingly, it seems that with blurry pictures the larger the picture, the harder it is to guess the contents).


You can try yourself on quasseldroid.info if it loads better for you than medium — usually it should.

That said, none of it is easy to optimize.

The ideal goal is to only load images if they're actually needed, only in the size that is needed, to always show at least a placeholder, and to ensure the loading never causes the page to reflow.

That's why all this complicated loading is used, to give the illusion of a faster site.


> the smaller pictures in the bottom raw

sorry, I meant "row"


Thank you for this. Next step: making it so that if I browse on a 2560x1440 monitor, the content uses more than only 30% of the window.


It is quite easy to increase the percentage of the window filled by text - resize your window to take smaller part of your screen ;)


Hope someone from Medium is reading this thread -- there's a problem with your product if people who want to go to your site to take time and read consider your site unreadable.


I appreciate the creators efforts here, but honestly medium just needs to get their shit together. I use Reddit enhancement suite because it adds features. This just makes a basic blogging platform useable for reading. Personally I've just opted to not use medium any more.


Medium is dead. This is not a problem since yesterday... Medium has fallen in the same trap it wanted to solve at the beginning. I advice everybody to stop using Medium for their practices...


What would you say is the best alternative?


Serious question: why doesn't Medium make Medium readable? What is causing them to add various dickbars and other UX kludges?


Whats stupid is the whole point of medium was focusing on the content. Obvious the investors have a different opinion.


I got a lot of sarcastic arrogant messages back from the developers about the fixed bars over the years. I did some research but I have to check again. Some of them on their Linkedin profile use to work for media advertising corporations and as I dug I through I saw associations to Mindspark kind of things and as a technician I use to manually remove the dodgy browser toolbars that are associated with these aggressive advertising firms. Sort of see a pattern there.

I questioned them that I don't want these things stuck my screen constantly. All I want is to be able to close it without using Adblock, I showed them a good example, archive.org and they turn nasty, dodge the issue, insulted me further, like talking to me a like a dog and called Adblock harassment in itself and started moaning about it becoming evil and killing their revenue.

They ignored me when I showed them a thread I started on Adblock forums asking for help in blocking the Ebay basketbar and I clearly stated I don't use it to block adverts.

It appears that some of the developers who work for websites and implement there bars are overzealous and the type would say "I am overqualified for the job" and can do what I want and think of what the user/ guests want.


On Safari and Firefox we have a built-in way to remove distractions like these, such as Reader mode. A cynical viewpoint on why Chrome doesn’t offer this is that doing this would prevent you from seeing Google’s ads.


Don't think any cynicism at all is required to arrive at this conclusion.


I marvel at the creative genius that can come up with a, with any plausible alternative explanation, to be honest.


“At Google, we love the internet and creators who dedicate their life to crafting webpages that are beautiful to look at and delightful to read. In order to honor the hard work of these creatives, we have decided to not implement the “reader mode” many other browsers have. You can rest assured that Google will always do everything it can to support the visions of all who make the internet as we love it possible.”

(Could also insert a sentence or two about how Google has AMP instead, leaving “creators” in control unlike “reader modes”)


It's sad how plausible this is. Particularly in light of how Google explained removing the "view image" button from Google images the other day:

"Today we're launching some changes on Google Images to help connect users and useful websites."[1]

[1] https://twitter.com/searchliaison/status/964226180776845312


Two tweets down they mention they did it because of a lawsuit settlement.


They added that more truthful explanation a few hours later, due to the barrage of hate and confusion their original tweet was getting.


Ya lying to people smart enough to see through bullshit does that


"Bow toward your sitebuilding masters."


I know these aren't your words but man what a crock.

The user and their browser can change about every aspect of the presentation by design including showing nothing at all to sight impaired users and just reading out loud. It's so blatantly obviously about ads that I don't know why they bother to mislead. Just admit you the user will always be second priority and that if you have to choose between making money and making the best anything they will always by financial position be obligated to choose option a.


I'm pretty sure this is actually written by GuiA and not coming from Google itself.


> I marvel at the creative genius that can come up with a, with any plausible alternative explanation, to be honest.

"We didn't deem it as high priority as 600 other things we think we should do in this free browser."


Just add the Mercury Reader extension. Done. Sure, a native feature would be better than a plugin. But I'm not holding my breath.


Just Read is a nice Chrome extension that provides this functionality

https://chrome.google.com/webstore/detail/just-read/dgmanlpm...


Reader mode exists on Chrome for Android, so this is most likely a feature that mainline Chrome hasn't gotten around to rather than some nefarious plan :)


Safari 5 introduced Reader. It damn near predates Chrome itself.

I think Google would have gotten around to it by now if they were going to, considering the other giant epics they’ve launched in the browser since then.


Chrome on Android seems to have a reader mode. They don't call it that, it's called "simplified page" or something like that, but it's basically the same thing as FF and safari's reader mode.

And they even prompt to use it, which isn't something I've seen Firefox do.


Try this chrome flag to enable reader mode option:

chrome://flags/#reader-mode-heuristics


I don't see this flag on my version of Chrome (64.0 on Mac). Are you on the beta branch?


I see it on Brave and Chrome for Android, versions 64.x

Maybe it's only for mobile?


Yes, apparently it's mobile-only.


As much as I love reader mode, with this and the various other work arounds in this thread are we actually enabling them to make bad UI's? Avoiding sites like this might be a much better solution in the long term.


Medium is on my mental block list, when I do accidentally click a link to that site my immediate response is to click the back button... That is how bad the ux medium has gone out of their way to create


For articles I can live with it but the comments layout was clearly made to discourage any conversation.


The past has shown that cynicism is realistic when discussing whether ads or altruism are the motivation of google.


The pictured hackernoon banners are especially visually intrusive. Hackernoon also inserts text and image ads (inline) to some of the posts that contributors make. The contributor is not notified of these edits, and chrome extensions like this won’t catch them (and they are also neon green).

It might be good for their branding if my primary takeaway were positive, not annoyed.


I always find it weird if a link shows up on twitter or HN and then a few days later it appears again, now suddenly under this generic "hackernoon" branding. Medium is bad enough at hiding author identity, mixing the good with the crap, but hackernoon adds another layer and I just don't get it.


The value-proposition for the author by submitting to an Medium publisher like HackerNoon is increased exposure, although I wonder if it's worth the cost of having the personal brand obfuscated. (page views for a personal blog are a vanity metric, after all)

Incidentally, whenever I see a HackerNoon or FreeCodeCamp domain on Hacker News, it serves as an anti-signal of quality, which is an interesting side effect.


Same with the anti-signaling for me. Having the same issue with Medium too, but at least there the author is in the URL.


I don’t for the life of me understand the people who write about programming on Medium when the CMS doesn’t even have native syntax highlighting.

I wish I could tell people it’s straightforward to migrate from Medium, but it involved a lot of annoying copy-pasting when I did it.

Sooner is better than later, though. Call it markup debt if you well.


https://dev.to is such a great alternative to Medium for programming posts. I really wish it catches up and becomes more popular


So is any blog engine with syntax highlighting, or even a simple HTML document with something like prism-js[^1].

[^1]: http://prismjs.com/


Medium was specifically created because of bloated blogs. It has become the very thing it ought to destroy.


It's the cycle of people who want to "do things better".

Step 1: Find a type of website experience that sucks for users. Example: Blogging, image sharing.

Step 2: It's so simple! Just do the same, improve on the UX, don't plaster ads, have a clean site and give it a cool name. Example: Medium, Imgur.

Step 3: As people flock to your site because it's cleaner than the alternatives, have the lightbulb moment: "Oh wow, I could monetize all these users!". So you plaster the site with ads, marketing gimmicks and what not and you don't suffer for it. It's not that it works. It's just that you have a userbase that trusts you and is already used to you. They don't know anyone else.

What are your users gonna do, build their own site that doesn't suck?

It really is a depressing, wasteful cycle.


> It really is a depressing, wasteful cycle.

I do agree with this, but I believe we can make it at least not-as-bad.

I recently started a new blog & evaluated a load of options, Medium was one. I quickly decided it had become a cesspool of attention engineering and social widgets, and ultimately settled on self-hosting, with no banner adds or social rubbish.

Can the average public do this? I’d argue it’s not trivial nor inexpensive currently, but maybe that’s worth fixing? Encourage people to move off centralized platforms for sharing content, and maintain control.


Since we're talking about blogging platforms I might as well plug Ghost: https://ghost.org/

I recently moved my company's blog to it. This is an open source, self-hostable markdown blog engine with an excellent featureset and some great default themes, and a paid hosted plan.

Official Ghost blog: https://blog.ghost.org

My company's blog: https://articles.hsreplay.net


Exactly. Personally I'm following the same steps with a blogging platform I'm building [0], but avoiding that third step in it and my future products, and it's working out so far.

A lot of it comes down to financial incentives, and I think VC-backed products are going to go head-first into step 3 without thinking, and then we all suffer. If there were more small, grow-slow products (probably bootstrapped) that based success on delivering a nice product that never goes to shit (instead of constantly conquering the world), we might have less of this cycle.

[0] https://write.as


The problem I see here is the more users you have, the more it costs to keep the hardware running, so at some point you have to monetize in some way or another.


I'm pretty sure Medium at one point was a decent low level solution to the problem they set out to solve - it just doesn't scale to the multi million/billion dollar solution the founders wanted.


Note: this plugin can read and change all the data on the websites you visit.


Extensions that do this terrify me. Imagine a popular Chrome extension, say, Fireshot, with 2 million active installs, selling out. The next update of the app gets shipped with a screen scraper that looks at coinbase.com. Some time after you've last visited your dashboard, it opens a connection on some entirely unrelated site and posts to the 'send' page to send all of your BTC to a third party address.

Or if you have 2FA enabled for sends, just intercept the send POST with an address of your choice, but display the user's originally input address on the confirmation screen. To make it even more confusing, keep a list of transactions:intended accounts so any time the user looks on _any_ bitcoin site it shows the transaction was going to the right account.


The bitcoin people will tell you that if you're using the same computer to browse the web as to hold a bitcoin wallet, you're doing it wrong.

(there are other conclusions one could reach from this, such as the disadvantages of being your own uninsured bank)


Isn't that how silk road guy got caught by the feds.


i thought he signed up for a forum with an email tied to his real life identity but used his previously anon handle


It was a StackOverflow question he posted while creating Silk Road, in which he used his real name (before switching to the "frosty" alias in under a minute).

And his SSH key had both the username and hostname set to that alias ("frosty@frosty"), which is how they connected him to Silk Road.

Specifically, it was this question: https://stackoverflow.com/questions/15445285/how-can-i-conne...


You can set a flag on Chrome (chrome://flags/#extension-active-script-permission) to block the extension by default and only activate it when you click the pageAction/browserAction or if you whitelist it (for that website only or for all websites).

Also, two extensions come in handy: "Chrome extension source viewer" [1] and "Extensions Update Notifier" [2] (self-descriptive titles). The second one can automatically disable extensions when they're updated.

They're honestly a little annoying if you have more than a handful of extensions since they lack some essential features (e.g. viewing a code diff from the previous version), but at least they're open source! :)

[1]: https://chrome.google.com/webstore/detail/chrome-extension-s...

[2]: https://chrome.google.com/webstore/detail/extensions-update-...


We should try and be more sinister. Imagine a company purchases or influences a plugin so much that when a news article is read about E Corp dumping toxic waste into drinking water the content is changed to play down the numbers and sentiment.


I always use incognito mode (disable all extensions) when visiting relevant sites. I wonder if it's enough.


Without reading the source, I reckon this is because not all Medium blogs are under medium.com subdomains, so you can't request access only to *.medium.com in the extension manifest.


This is the reason. The code does look for a specific appname that is present on all medium blogs before running the code. If this were a closed source extension I would worry about it, but since it's open source you can verify it's not doing anything malicious. That said, I think I will copy the source and turn it into a user script so I don't have to install another extension.


Open/close source is not going to help you here: nothing stops a malicious author from publishing one version open source while publishing the malicious one.

The only way to find out is to run the extension in Chrome and inspect it with the debugger.


Can one verify if the published source is the same as the published extension?


Yes, Chrome extensions are just packaged code. No compiling or anything necessary.


However, Chrome will automatically update the extension.

Things that could go wrong:

* The author could wake up in a bad mood one day and decide to push a malicious update.

* The author's computer could be compromised, and someone could steal the signing keys and publish a malicious version of the extension.

* The author could get bored of the extension and transfer ownership to someone who offers to maintain it for them, but who turns out to be malicious.

* The author could be in need of some cash and could decide to accept one of the many offers they no doubt get from shady parties to buy their extension.

I'm sure the author of this extension would never do any of these things... but I'm not sure enough to risk it. :/


One of the things I can’t understand as a Chrome user and developer is how limited your options for explicit extension permissions are. Either people will not install extensions (basically my case), or the Chrome team will teach people to ignore warnings and extensive permissions not unlike what we used to do with SSL/Mixed Content warnings. (Which I guess is what they already do on Android, but still.)

Firefox also had to learn about the vulnerability of Firefox extensions the hard way, but training users to scrutinize permissions would be a great opportunity.


One (perhaps sinister) explanation would be that Google really doesn't want people to install plugins, because they are often used to remove ads. Of course, Google wants Chrome to be an independent project, but this could explain why the issue doesn't get priority.


As someone else mentioned, this is so it works on custom domain publications, but you can verify in the source nothing nefarious is going on.

It's also on the list of issues to fix: https://github.com/thebaer/MMRA/issues/15


Can't any extension do this? They all insert javascript onto pages and they can interact with your browser directly. That's like saying "this extension can do exactly what every other extension can do".


An extension can only read/modify pages that it has explicitly requested to be able to read/modify in its manifest. In this case, the extension has requested to read/modidy "https://*/*" (which is necessary since Medium is often used to power other domains).

It is sadly true that most extensions which do anything useful end up needing to request permission to all web sites. And that's why I mostly refuse to use extensions...


Extensions can specify if they want read/change access to only one domain (or more). This extension could have specified medium.com alone.


https://medium.com/@tgaul/introducing-unobstruct-230e4e95cf5...

Unobstruct is a good anti-dickbar tool for iOS.


Better idea: make the internet readable again.

Perhaps using a combination of AI/ML and collaborative raw-text extraction.


You mean Safari's (and presumably any other browser) Reader Mode?

https://imgur.com/a/qsYrf


That's what I use on firefox. Works great most of the time.


Thanks, just tried it, but it seems to remove all images, also the relevant ones :(


It depends how they’re added to the site. In-line images on Ars Technica appear fine.


Yes, and that's exactly why it probably needs some AI/ML or some collaborative user input ;)


Medium inserts the images as you scroll; they don't show up if you extract the text before scrolling down.


The internet was readable before AI/ML. I don’t think bikeshedding should be that complicated.


View->Page Style->No Style usually works for me. Obviously pages become a lot more bland and...style-less, but the text and images I'm usually after will still be there.


(I should have added that the relevant images should be retained)


I've gotten so used to right clicking and removing the offensive parts of websites in ublock origin that I always find it shocking just how bad the web is on a new machine. So many banners, so many subscription lists, so many useless social bars.

It's also kind of silly that I have four different extensions just to shield myself from how bad the web has gotten. I feel like I'm going under red alert every time I want to check my email.


> every time I want to check my email.

Ever considered using a non-web email client? K9, Tunderbird, Evolution, Kmail, Geary, mutt, alpine, etc?


There's also CSS extensions such as Stylus.



Sheesh, why do we need tools for user-hostile layouts?

I hate reading between slats on Medium, don't they realize that?

What's their incentive for it?


Increases usage?


Does it? Does anyone just go to medium.com and see what's going on rather than being linked to some specific article? Is there anything about the medium reading experience that means someone would rather go to them specifically rather than where the content they want happens to be? Are they trying to lure writers that way? I don't get it.

I mean, I'm sure they know their business and everything. Again: I don't get it.


Well, that's the incentive for Medium to do it. Only they would know whether it works or not. It sticking around suggests it does. However, success hides all problems.


Every time I visit medium, it shows a popup reminding me how much times I visited it before. Do they want to make me feel guilty for visiting too often?


I have made a stylish stylesheet with a similar purpose:

https://userstyles.org/styles/150108/medium-custom

But it is more focused on the writing experience.

I really love medium's editor, but I wanted a dark theme (more comfortable for the eyes), and to remove all the clutter so I could focus on no-distractions writing.

I hope you'll find it useful =)


Recently I've released an extension that hides the sticky elements. It works on all sites including Medium. https://chrome.google.com/webstore/detail/sticky-ducky/gklhn...


I have found a Chrome extension over a month ago called "Sticky Header Hider aka Fixed Header Fixer" by Emojistuff which works very well. Yesterday I found the other one "Make Medium Readable again" by A Bunch Tell when I changed my search term from "Sticky Headers etc" to dickbars and found I am not the only one being tormented by those things. I also see another extension for Apple called Unobstruct.

I like the option "Disable lazy image loading". I have noticed that. I thought it was for constantly loading of adverts.

Pleased to see something done about this annoying practice.

They think I am so stupid that I can't locate the navigation bar so they have to ram in my face/fixed line of site constantly.

So nice to have the freedom back without any work in hiding things with Adblock or clicking that bookmark for most sites.


Why does this extension need permission to "read and change all your data on websites you visit"?


So it works on custom domains like hackernoon.com [0]

[0]: https://github.com/thebaer/MMRA/blob/master/content.js#L66


The Kill Sticky bookmarklet does a lot of this, and works on most sites, not just Medium: https://alisdair.mcdiarmid.org/kill-sticky-headers/


Or if you are using uBlock Origin add this to custom filters

  ##.u-fixed


Technology is progressing fast, but I think UX is going down more and more.

To be able to read basic text, we need to fix things by ourselves, make scripts, addons, etc.

Soon we will need fix for this, fix for that, fix for everything.


Now we need something which will silently remove React hype articles :-D


I like this plugin. Thanks. I do not like the recent “pivot” if oh will of medium allowing branding etc. It’s not executed perfectly; though I do not have a better solution in mind.


This looks great, now how to get rid of these annoyances on Android Chrome? Especially the uncloseable "get app" button.


Not to sound edgy, but you don't (and probably never will). Use Firefox instead and be happy with your extensions :)



Does this mainly fix things that are annoying to non-members?

I've considered making an extension to retool the "clap" nonsense myself, but for readability Medium is second only to mobile-friendly view on Android most of the time.


Hii its a great topic to discuss <a href="https://www.fortechinfo.com">free paytm cash</a>


Hii its a great topic to discuss https://www.fortechinfo.com


Not sure if my comment here is relevant, but the past 5 - 8 days or something Medium (logged in) changed for me significantly. I can now only see the main header stories and some top lists to the right:

https://imgur.com/a/bfdHb

The mobile just says "You've made it through your stories for now". Has anyone else experienced this the past days ? Have they expanded their subscription model to include even articles that are not "paywalled" ?


You could just use ublock and get rid of those parts manually on articles pages


Outline.com is a great tool to quickly do this with any webpage.


Strongly seconded.

https://outline.com

Works where Reader Mode isn't an option.


Medium looks fine in a text-only browser such as links. Better than most websites in fact.


I thought this was going to make Medium more readable; but it literally makes Medium more readable.


What?


He means the articles themselves didn't change.


Enough of the "Make X Y Again" please, it does nothing but refer to negative connotations.


I refuse to let a simple phrase like that become verboten just because a certain configuration of it was used by someone that our circles of friends dislike. Personally, I think it’s a funny reappropriation.

But either way, this isn’t particularly germane to the conversation, and you could even argue that it wasn’t done intentionally considering that Medium used to be readable.

Anyway, Medium is annoyingly hard to read now, and I’m glad someone’s done something to fix it.


>just because a certain configuration of it was used by someone that our circles of friends dislike.

I'm going to stand on the side of this issue and argue it's more than that the configuration of "Make X Y Again" was used by people circles of my friends dislike, it was a rallying call, a point of campaigning, to cause a deliberate division of people at the expense of individuals whose mere presence makes America less than great according to some-on deeply superficial grounds.

But yes, not really relevant to the discussion.

I will ask this though: In what ways is Medium difficult to read? Personally speaking it's one of the easiest sites to read, just curious what that experience is like for other people, clearly it's pronounced enough for someone to make a browser extension. Just wondering.

Edit: I do hate the amount of clicking that has to go on just to read "Network" responses, however.


I like this title as it’s short and sweet. Actually, most threads in HN have negative messages such as this on.

Every single thread. Some new kid makes a small little app and it gets crushed with someone pointing out - usually obvious - short comings or how unnecessary it is. Let’s all be supportive for once.

Not saying OP is not supportive; OP is just communicating their frustration. Just using OP as a conduit to explain the pattern I usually see.


Are you sure this sentiment is universal?


But this is actually a solution...


Well, yes, and the people who use "Make America Great Again" generally believe that their proposals are actually a solution to an actual problem of America being no longer great.

It seems to me that if you want to convey that you disagree with those people or their assumptions, using their snowclone to describe a tool that actually solves a problem that arose recently is counterproductive. If I wanted to convey disagreement, I might release a tool called, say, "Make HN Readable Again" that added a bunch of slow JavaScript and popups. (And if I wanted to convey neither agreement or disagreement, I'd pick a different name.)


I don't doubt that it is. Why someone would want to associate their app/tool/product with a controversial political slogan is beyond me.


Maybe remove the controvesial from your sentence? Its a nearly universally heard campaign slogan and has been riffed on all sides of the political spectrum. Including many democratic institutions trying to ride the popularity of the phrase.


Why would would someone want to censor themselves just because people they don't like want a monopoly on language? Is acting in a milquetoast manner attempting the broadest appeal more important than having common sense and integrity?


> Why would would someone want to censor themselves just because people they don't like want a monopoly on language?

All effective communication is "censoring yourself". When I say that I'm a software engineer, I'm refusing to say that I'm a kazoo player, because I intend to convey the idea that people get when they hear "I'm a software engineer" and not the idea that people get when they hear "I'm a kazoo player." No matter how much I dislike (or like) kazoo players, I'm not going to attempt to reclaim the term from them.

And the English language is descriptive, not prescriptive. When a phrase has a well-established meaning - whether that meaning was first by commoners 400 years ago, or commoners today, or (for some languages) a bunch of academics in an ivory tower today - people are going to think I mean that meaning when I use the phrase. If I want my communication to be effective, it's on me to pick words that I expect people will understand, not on my audience to figure out what I really meant.

When I communicate, I intend to communicate the most accurate thing I can to, yes, the broadest audience I can.


I'm not saying self-censorship is bad, I'm saying that if you do it because someone else misappropriated some language, then you're on a clear path to only saying what other people permit. And this is especially wrong when those 'other people' are actively trying to undermine your ability to communicate.


To avoid the risk of this entirely predictable meta-discussion regarding a headline format, that has little to do with the readability of Medium, but was probably chosen to try and increase clickthrough rates?


OTOH, I quite like; "Make Tragedy Farce Again".


That's your opinion. Some would say it doesn't.


Hey, one of the founders of Hackernoon here.

Love what this does, could you make it removing fixed positioning instead? Basically this kills all of our branding. we try to maintain a quality threshold for our community, and as such hope that yall notice our colors and at least consider that it might be worth it to read.

Personally, Id love something that minimized the nav to the bottom while moving but thats just me.

This is amazing work! Thanks for helping the community!


> could you make it removing fixed positioning instead?

This is actually what it does. Hackernoon is a resourceful site but I hate reading it. I usually open Chrome Developer Tool and kill the header + bottom engagement bar manually. If I'm too lazy, I just close the tab. I'm so glad I found this extension.


Yeah, we don't have control of our layout like that :( I derped really hard and didn't notice it was just making it fixed from the photos (I was mobile when commenting)


Could you consider removing fixed positioning instead? Much like hiding functionality behind a mouse hover, it's a terrible "feature" that always ruins the experience for someone, given the explosion of user agents and form factors over the last 10 years.


Are those not all things you can do? If your readers need shit like this to make your site bearable you're doing it wrong.


Nope. Medium has control of our layout.


It does remove the fixed positioning.


Derp. I Thought it was removing the element, my bad!




Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: