Guest User

Untitled

a guest
Aug 21st, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. // ==UserScript==
  2. // @name New Userscript
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @include https://www.mturkcontent.com/*
  8. // ==/UserScript==
  9.  
  10. var btns = document.querySelectorAll('input[type="radio"]')
  11. for(var i=0;i<btns.length;i++){
  12. if(btns[i].value=="61")
  13. btns[i].checked=true;
  14. }
Add Comment
Please, Sign In to add comment