YT made it easier to unsub manually.
On the "new" main page, click subscriptions.
Then up top you'll see:
Subscriptions
### subscriptions (Check box) Show uploads only
Click-
### subscriptions
This brings you to a page with a new layout that makes it really easy to unsub. Would be easier if there was a check box to select all and unsub, but I guess they left that out for whatever reason. Depending on how many subscriptions you have, that's how many times you'll have to click. If you're not dumb like me, or semi skilled in scripting, you can write/create a simple script that will go through this page clicking each radio button to unsub.. gl
Edit:
Something like this (works for me) using autohotkey
F2 to execute *ah, and what this does is click unsubscribe for each username that can be seen on the screen, then refreshes the page. Then simply press f2 again to repeat.
and done
You haven't added any subscriptions yet.

On the "new" main page, click subscriptions.
Then up top you'll see:
Subscriptions
### subscriptions (Check box) Show uploads only
Click-
### subscriptions
This brings you to a page with a new layout that makes it really easy to unsub. Would be easier if there was a check box to select all and unsub, but I guess they left that out for whatever reason. Depending on how many subscriptions you have, that's how many times you'll have to click. If you're not dumb like me, or semi skilled in scripting, you can write/create a simple script that will go through this page clicking each radio button to unsub.. gl
Edit:
Something like this (works for me) using autohotkey
F2 to execute *ah, and what this does is click unsubscribe for each username that can be seen on the screen, then refreshes the page. Then simply press f2 again to repeat.
Code:
f2::
WinWait, YouTube - Broadcast Yourself. - Google Chrome,
IfWinNotActive, YouTube - Broadcast Yourself. - Google Chrome, , WinActivate, YouTube - Broadcast Yourself. - Google Chrome,
WinWaitActive, YouTube - Broadcast Yourself. - Google Chrome,
MouseClick, left, 1151, 248
Sleep, 100
MouseClick, left, 1145, 291
Sleep, 100
MouseClick, left, 1145, 348
Sleep, 100
MouseClick, left, 1153, 412
Sleep, 100
MouseClick, left, 1151, 469
Sleep, 100
MouseClick, left, 1154, 515
Sleep, 100
MouseClick, left, 1153, 581
Sleep, 100
MouseClick, left, 1157, 634
Sleep, 100
MouseClick, left, 1162, 690
Sleep, 100
MouseClick, left, 1153, 743
Sleep, 100
MouseClick, left, 1146, 794
Sleep, 100
MouseClick, left, 1141, 864
Sleep, 100
MouseClick, left, 1143, 912
Sleep, 100
MouseClick, left, 1147, 968
Sleep, 100
MouseClick, left, 81, 69
Sleep, 1000
and done
You haven't added any subscriptions yet.
Last edited: