Skip to content

Instantly share code, notes, and snippets.

@cpuuntery
Last active August 31, 2022 13:06
Show Gist options
  • Save cpuuntery/1f4c6deae49887b77c65905d5db62a7f to your computer and use it in GitHub Desktop.
Save cpuuntery/1f4c6deae49887b77c65905d5db62a7f to your computer and use it in GitHub Desktop.
let show_all_text = document.querySelectorAll('span[style="display: none;"]')
for ( let i=0; i<show_all_text.length; i++)
{show_all_text[i].style=null}
OR
document.querySelectorAll('span[style="display: none;"]').forEach(x=>x.style=null)
MAL updated their website
document.querySelectorAll('div.body div.text span.js-hidden[style="display: none;"]').forEach(x=>x.style=null)
document.querySelectorAll('div.rating.js-hidden[style="display: none;"]').forEach(x=>x.style=null)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment