canto's profile picture

Published by

published

Category: Web, HTML, Tech

Remove Tacky Profile Styling

If someone's profile is getting to be a bit too.. much (e.g. mine [whoops]), you can use this script to clear their style tags.

 for(var i of document.getElementsByTagName("style")){
    i.innerHTML = "";
}


7 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )