// ==UserScript== // @name Piped Underline Timestamps // @namespace https://femboy.group/ // @version 1.0 // @description Underline timestamps on comments. // @match https://piped.projectsegfau.lt/watch* // @icon https://piped.projectsegfau.lt/favicon.ico // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); style.innerHTML = ` .comment-content.pl-2 > .whitespace-pre-wrap > a { text-decoration: underline !important; } `; document.head.appendChild(style); })();