This theme replaces all profile pictures with the old default profile picture. Recommended use with V3
Old YT profile picture by huberatelier
Details
Authorhuberatelier
LicenseGNU GPLv3
CategoryYouTube
Created
Updated
Size1.6 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
If there is an issue with the profile picture taking too much to load, it's because of the image being a bit big. Please report it if such problem bothers you
Source code
/* ==UserStyle==
@name Old YT profile picture
@namespace https://github.com/huberatelier
@version 1.0
@description ==IMPORTANT== Currently there is no way of replacing only the default profile pictures, so this theme replaces all profile pictures.
@author huberatelier
@preprocessor stylus
@license GNU GPLv3
@var select newImg "Version" ["image1:2015 Default", "image2:2015 Default Brand", "image3:2013"]
==/UserStyle== */
@-moz-document domain("www.youtube.com") {
if newImg == 'image1'{
.distiller_yt-thread_avatar, img.yt-img-shadow {
content: url('https://github.com/huberatelier/huberatelierThemes/blob/main/oldYTpfp/normalacc.png?raw=true');
}
.avatar {
background-image: url('https://github.com/huberatelier/huberatelierThemes/blob/main/oldYTpfp/normalacc.png?raw=true') !important;
}
}
if newImg == 'image2'{
.distiller_yt-thread_avatar, img.yt-img-shadow {
content: url('https://github.com/huberatelier/huberatelierThemes/blob/main/oldYTpfp/brandacc.png?raw=true');
}
.avatar {
background-image: url('https://github.com/huberatelier/huberatelierThemes/blob/main/oldYTpfp/brandacc.png?raw=true') !important;
}
}
if newImg == 'image3'{
.distiller_yt-thread_avatar, img.yt-img-shadow {
content: url('https://github.com/huberatelier/huberatelierThemes/blob/main/oldYTpfp/2013acc.png?raw=true');
}
.avatar {
background-image: url('https://github.com/huberatelier/huberatelierThemes/blob/main/oldYTpfp/2013acc.png?raw=true') !important;
}
}
}