Advertisement
metalx1000

Mark all Stepup Notification messages as read

May 26th, 2024 (edited)
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. a=document.querySelectorAll(".ianot-dropdown-item")
  2. // Mark all Stepup Notification messages as read
  3. for(aa of a){
  4. if(aa.innerHTML.indexOf("Mark") !== -1){
  5. aa.children[0].click()
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement