Mturk logo change

This will change the Mturk logo image on Dashboard to a gif of money.

  1. // ==UserScript==
  2. // @name Mturk logo change
  3. // @namespace Money GIF
  4. // @author copyman
  5. // @include https://www.mturk.com/mturk/dashboard*
  6. // @version 0.1
  7. // @grant none
  8. // @description This will change the Mturk logo image on Dashboard to a gif of money.
  9. // ==/UserScript==
  10.  
  11. var interval = 0.25; // in seconds
  12.  
  13. // DON'T EDIT BELOW ///////////////////
  14.  
  15. function imgReplace() {
  16. var images = document.getElementsByTagName('img'),
  17. len = images.length, img, i;
  18. for (i = 0; i < len; i += 1) {
  19. img = images[i];
  20. img.src = img.src.replace('https://images-na.ssl-images-amazon.com/images/G/01/webservices/mechanical-turk/logoAI3.gif', 'http://www.reactiongifs.com/wp-content/uploads/2013/12/money.gif');
  21. img.src = img.src.replace('Original2.gif', 'Replacement2.gif');
  22. }
  23. }
  24.  
  25. setInterval(imgReplace, interval * 1000);