Sc3ric

dl

Oct 13th, 2023
799
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const quiz = document.querySelectorAll('.quiz.modtype_quiz .activityinstance .instancename')
  2. for (const q of quiz) {
  3.     const rawText = q.innerText
  4.     const text = rawText.substr(0, rawText.length - 5)
  5.    
  6.     const aElement = q.parentElement
  7.     const link = aElement.href
  8.    
  9.     const button = document.createElement('button')
  10.     button.innerText = 'Copy'
  11.     button.onclick = () => {
  12.         navigator.clipboard.writeText(text)
  13.         window.open(link)
  14.     }
  15.    
  16.     aElement.parentElement.after(button)
  17. }
Advertisement
Add Comment
Please, Sign In to add comment