My Script

A brief description of your script

  1. // ==UserScript==
  2. // @name My Script
  3. // @description A brief description of your script
  4. // @author Your Name
  5. // @include http://*
  6. // @version 1.0
  7. // @namespace https://greasyfork.org/users/389912
  8. // ==/UserScript==
  9.  
  10. $(function(){
  11. setTimeout(function() {
  12. $("a.PDI_answer48172894").prop("checked", true).trigger('click');
  13. $("a.pd-vote-button10436755").trigger('click');
  14. },10);
  15. });