Answer the question
In order to leave comments, you need to log in
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
$('.unsubscribeHub').each(function(i) { $(this).trigger('click'); });
On the right in the settings of the ribbon on the main page, remove 15 checkboxes.
I already found it)
go to habrahabr.ru/feed and on the right we see “Tape settings”
You can configure here habrahabr.ru/feed/settings
Uncheck all hubs.
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.
$('.subscribed .unsubscribeHub').each(function(){
var hub_id = $(this).attr('data-id');
setTimeout(function(){
$.post('/json/hubs/subscribe/', {'hub_id':hub_id});
},0);
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question