Change YouTube Leftbar Subscription Links To Channel/User Video Page

Change YouTube leftbar's subscription links to channel/user video page. This script can optionally also move updated links to top of the list (if there's enough space), optionally uncollapse all updated links which may extend the non collapsible links, and optionally display the number of updated & total links following the "SUBSCRIPTION" section label. All features can be enabled/disabled from the script code. For new YouTube layout only.

< Feedback on Change YouTube Leftbar Subscription Links To Channel/User Video Page

Question/comment

§
Posted: 2019-05-20
Edited: 2019-05-20

totally remove.

Last month youtube squeezed view of its pages with new left side bar. Ruined total wide view. Please add completely remove left side bar feature.

jcunewsAuthor
§
Posted: 2019-05-20

Unfortunately, that's not what this script is all bout.

I'd suggest you use Stylus addon to override the site CSS, and use below code to completely hide the left sidebar.

body {
  overflow: auto!important;
}
ytd-mini-guide-renderer.ytd-app, #guide {
  display: none;
}
#page-manager {
  margin-left: 0;
}
.ytd-browse[class*="-columns"] {
  margin: 0 16px 16px 16px;
  width: auto!important;
}
§
Posted: 2019-05-20
Edited: 2019-05-20

@jcunews said: Unfortunately, that's not what this script is all bout.

I'd suggest you use Stylus addon to override the site CSS, and use below code to completely hide the left sidebar.

body {
  overflow: auto!important;
}
ytd-mini-guide-renderer.ytd-app, #guide {
  display: none;
}
#page-manager {
  margin-left: 0;
}
.ytd-browse[class*="-columns"] {
  margin: 0 16px 16px 16px;
  width: auto!important;
}

thanks alot for help and advice.

Post reply

Sign in to post a reply.