someone loudly complained about the notice i put on my website (which includes pages such as #webgbcam and #ditherinator) that Chrome is an unsupported browser. i don't want to not have the notice as i find it important for people to know i will not offer support if they have issues while using Chrome, but i caved and make it look less ominous.
@sam i did it with an nginx rule!
map $http_user_agent $brnotice {
default '</head>';
~*Chrom '<link rel="stylesheet" href="https://maple.pet/notice.css"></head><div class="impnotice">You are using an unsupported browser. Please visit <a href="https://getfirefox.com">this website</a> if you would like to upgrade to a supported browser.</div>';
}
and in the server block:
sub_filter '</head>' $brnotice;
sub_filter_once on;