You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
376B

  1. // ==UserScript==
  2. // @name Auto-Acknowledge Steam URL Filter
  3. // @namespace .xyz.ishygddt
  4. // @include https://steamcommunity.com/linkfilter/?url=*
  5. // @version 0.0.1
  6. // @run-at document-end
  7. // ==/UserScript==
  8. l=document.getElementsByClassName('url');
  9. if(l.length==1)
  10. if(confirm(l[0].textContent))
  11. document.getElementById('proceedButton').click();