lol one problem it doesn't work on all sites. like parsing time should be a conditional thing on a universal bookmarklet. Still got it saved as YT for reference
@aou lol one problem it doesn't work on all sites. like parsing time should be a conditional thing on a universal bookmarklet. Still got it saved as YT for reference
It's specific to Jootube! haha
It's specific to Jootube! haha
Speaking of which I've been meaning to remove appended tags somehow like -youtube or -breitbart automatically for a while. Gonna have to look into that. I mainly delete em b/c aesthetics. I don't need to read that trash w/ the domain displayed
Speaking of which I've been meaning to remove appended tags somehow like -youtube or -breitbart automatically for a while. Gonna have to look into that. I mainly delete em b/c aesthetics. I don't need to read that trash w/ the domain displayed
var title = document.getElementsByTagName("title")[0].innerHTML;
var title = title.replace(" - YouTube", "");
You can use that as a template and change the getElements to class or id name.
`var title = document.getElementsByTagName("title")[0].innerHTML;`
`var title = title.replace(" - YouTube", "");`
You can use that as a template and change the getElements to class or id name.
(post is archived)