-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYouTube_Hide_Name.user.js
37 lines (29 loc) · 1.72 KB
/
YouTube_Hide_Name.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// ==UserScript==
// @name YouTube Hide Name
// @version 1.5
// @description Remove your YouTube account name from view
// @author https://github.com/Technetium1
// @license The Unlicense
// @match https://www.youtube.com/*
// @match https://studio.youtube.com/*
// @updateURL https://github.com/Technetium1/Userscripts/raw/main/YouTube_Hide_Name.user.js
// @downloadURL https://github.com/Technetium1/Userscripts/raw/main/YouTube_Hide_Name.user.js
// @grant GM_addStyle
// @run-at document-end
// ==/UserScript==
// Hides name from the top of playlist view [youtube.com/playlist]
GM_addStyle('.metadata-owner.ytd-playlist-header-renderer { display: none !important; }')
// Hides name from top of active playlist [youtube.com/watch?v=VideoID&list=PlaylistID]
GM_addStyle('#publisher-container > yt-formatted-string.publisher.style-scope.ytd-playlist-panel-renderer.complex-string > a { display: none !important; }')
// Hides top section of top right dropdown menu, also hides manage account button
GM_addStyle('.ytd-active-account-header-renderer { display: none !important; }')
// Hides ALL names from livestream chat
// GM_addStyle('#input-container > yt-live-chat-author-chip { display: none !important; }')
// Hides name on left side of YT Studio [studio.youtube.com]
GM_addStyle('#entity-label-container { display: none !important; }')
// Hide name on YT Library [youtube.com/feed/library]
GM_addStyle('#title { display: none !important; }')
// Hide Added by section on shared playlists
GM_addStyle('#contributor.ytd-playlist-video-renderer { display: none !important; }')
// Hide WATCHED overlay
GM_addStyle('.ytd-thumbnail-overlay-playback-status-renderer { display: none !important; }')