N
N
Nikolai Kostyurin2012-07-23 19:51:33
Habr
Nikolai Kostyurin, 2012-07-23 19:51:33

How to unsubscribe from all hubs?

I climbed the settings for a long time, I didn’t find anything sensible, and unsubscribing from one hub is just torture.

Answer the question

In order to leave comments, you need to log in

9 answer(s)
M
marklarius, 2012-07-23
@marklarius

$('.unsubscribeHub').each(function(i) { $(this).trigger('click'); });

D
DIHALT, 2012-07-23
@DIHALT

… and start living.

N
Nickel3000, 2012-07-23
@Nickel3000

On the right in the settings of the ribbon on the main page, remove 15 checkboxes.

N
Nikolai Kostyurin, 2012-07-23
@JiLiZART

I already found it)
go to habrahabr.ru/feed and on the right we see “Tape settings”

E
Express777, 2015-07-08
@Express777

You can configure here habrahabr.ru/feed/settings
Uncheck all hubs.

S
spmbt, 2012-07-23
@spmbt

userscripts.org/scripts/show/128619 - habrAllHub - Reincarnation of the "Read all hubs" button with the ability to return to reading favorite hubs (blogs); works with authorization; selection settings are portable via JSON.
Dsnfcrbdftnt export your settings to JSON, then leave as much as you need (in your editor) - and import, and then save on the site through the site button. This way you can quickly switch between settings profiles. True, since May I have not looked to see if something was broken on the site, whether it will work in the same way as when it was created.

S
spmbt, 2012-07-23
@spmbt

Dsnfcrbdftnt = Pulling out

N
nur, 2012-07-23
@nur

$('.subscribed .unsubscribeHub').each(function(){
    var hub_id = $(this).attr('data-id');
    setTimeout(function(){
        $.post('/json/hubs/subscribe/', {'hub_id':hub_id});
        },0);
    
});

and so on for each page

L
LonelyDay, 2019-12-25
@LonelyDay

Relevant:
1. Go to https://habr.com/ru/feed/settings/
2. Run

$x('//button[@subscribed="true"]').forEach(function(i) { i.click(); });

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question