74
That's one of 50 or 60 enhancements to the SE user interface in the Stack Apps add-on SOX. You can load it from that link. You will also need a userscript manager installed for it to work -- Greasemonkey (for Firefox), Tampermonkey (for Chrome), or NinjaKit (for Safari).
To block Hot Network Questions, select the "Hide the Hot Network Questions module" option in the Appearance section of the features menu. The features menu will be accessible from a button added to the topbar:
BTW, another feature allows you to filter what is shown in the HNQ list by site and other attributes. The full list of features can be found here. Many of the enhancements are indispensible.
I would recommend installing the Development Version rather than the Official Version. The Development Version includes new enhancements but more important, it includes the latest bug fixes (and rarely introduces new bugs). SOX is used on a wide variety of platforms, browsers, and configurations, so that's an easy way to avoid a potential problem someone else discovered and has already been fixed.
21
I wrote a Chrome extension to hide/filter the Hot Network Questions list last year. As well as hiding it allows you to filter the links with a site or keyword whitelist or blacklist, because I found that though certain sites were usually distracting, others were often useful.
You can install it from the Chrome Web Store or check out the code on GitHub. (Originally shared on MSE).
19
Using uBlock Origin on Windows 7 with FireFox 50.1.0 I was able to achieve your desired result with this:
FWIW: I prefer uBlock Origin 10-fold over ABP.
ABP is a sell-out but they do allow you to disable their acceptable ads.
uBlock feels faster and it is WAY easier to just temporarily unblock a site and re-block it.
9re: "ABP is a sell-out": it can be opted out of in settings. – Amani Kilumanga – 2016-12-20T02:34:23.890
2@AmaniKilumanga The fact that it is the default means their goals no longer align with most of their users' goals = they lose to uBlock – Menasheh – 2016-12-22T01:48:40.907
2@Menasheh I agree that it is a poor choice, and I'm sure a lot of users just don't realize it's happening, but I think it's worth mentioning (something the linked article seems to miss completely). – Amani Kilumanga – 2016-12-22T01:53:51.637
1@AmaniKilumanga I will gladly amend my answer. Please provide the official ABP URL which tells you how to opt out of their new "feature". – MonkeyZeus – 2016-12-22T02:18:23.557
2
@MonkeyZeus https://adblockplus.org/en/acceptable-ads#optout
– Amani Kilumanga – 2016-12-22T02:19:08.8771(btw) I checked the ABP settings on some of my devices and just realized that settings don't sync. I think I might have to convert to uBlock now. – Amani Kilumanga – 2016-12-22T12:05:03.473
10
Here's a different approach. Rather than block Hot Network Questions from appearing, I block the ability to get to the destinations of the links.
I found I was wasting a lot of time following up the interesting Hot Network Questions so I installed LeechbBock and set it to only allow *.stackexchange.com for so many minutes each hour. That way I can read the interesting ones but not spend too long doing it.
Leechblock is really handy for gently nudging you not to spend too much time on sites you choose to block.
(Ironically I answered this question because I saw it on Hot Network Questions.)
1If you set it to block *.stackexchange.com then although you can see the HNQ you can't get to any of them as they are (mostly) residing on *.stackexchange.com. – Matthew Lock – 2016-12-21T08:29:57.943
7
You can use the Stylus browser addon (or similar) and add the following CSS to all SE sites:
#hot-network-questions {
display: none;
}
Example from a full version for Stylus here:
@namespace url(http://www.w3.org/1999/xhtml);
/* From https://gist.github.com/akerbos/152d7891d2b8b34edf3a */
@-moz-document domain('stackoverflow.com'),
domain('stackexchange.com'),
domain('superuser.com'),
domain('serverfault.com'),
domain('stackapps.com'),
domain('askubuntu.com'),
domain('mathoverflow.com'),
domain('answers.onstartups.com'),
domain('mathoverflow.net') {
#hot-network-questions {
display : none;
}
}
Use "Mozilla Format > Import".
2
As per the Meta Stack Exchange post, Updating the Hot Network Questions List - now with a bit more network and a little less "hotness"! — you can hide the HNQ list from the sidebar globally by visiting your preferences page and choosing "Hide Hot Network Questions", which appears in the "Sidebar" section.
User preference to remove HNQ sidebar section globally
Your user profile settings tab got a bit more crowded today. You now have the option to turn off the HNQ List widget in the right hand sidebar. If you don't want to see the HNQ list, you don't have to! So, if this is what you've been dreaming of for years, head over to the sidebar section of your preferences and change it! The HNQ list is viewable by default for all users.
There are a few reasons we're starting with this solution:
- It'll work on every site and every device you use.
- It's something we could implement relatively quickly and get a reliable result.
There are a few things it doesn't do:
- Doesn't let you show or hide the HNQ list on different sites or devices.
- Isn't an option for non-logged-in users.
- Doesn't let you customize which sites you see by either a whitelist or blacklist.
While I'd like to solve 1 and 2 by making it possible to collapse the section in the sidebar on the page and saving that state as a cookie, that will take a bit more design work so we're putting it on hold for now. Solving #3 is likely very complicated to implement so we don't have plans for it for the time being.
2The filter looks okay. It also takes effect immediately, no need to restart Firefox. Are you sure ABP is enabled on [so]? – Daniel B – 2016-12-19T07:35:53.893
11
Both blocking the sidebar and filtering individual sites have been discussed and solved on meta before.
– Lilienthal – 2016-12-19T10:54:44.9074Just out of curiosity, why block that specific sidebar? – bug-a-lot – 2016-12-21T14:26:28.050
5@bug-a-lot: it's a timesink worse than TV Tropes for many people. – RemcoGerlich – 2017-03-20T08:42:34.457