mmmturkeybacon Remove Embedded Video

Removes embedded videos from mturk forums and replaces them with links to the videos.

  1. // ==UserScript==
  2. // @name mmmturkeybacon Remove Embedded Video
  3. // @version 1.16
  4. // @author mmmturkeybacon
  5. // @description Removes embedded videos from mturk forums and replaces them with links to the videos.
  6. // @namespace http://userscripts.org/users/523367
  7. // @match http://mturkforum.com/showthread.php?*
  8. // @match http://www.mturkgrind.com/showthread.php?*
  9. // @match http://www.mturkgrind.com/threads/*
  10. // @match http://mturkgrind.com/threads/*
  11. // @match http://turkernation.com/showthread.php?*
  12. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
  13. // @grant GM_log
  14. // ==/UserScript==
  15.  
  16. $(document).ready(function()
  17. {
  18. var $vid_embed = $('iframe[src^="//www.youtube.com"],iframe[src*="gifv"]');
  19. $vid_embed.each(function()
  20. {
  21. var $this = $(this);
  22. var vid_url = $this.attr('src');
  23. $this.after('<br><a href="'+vid_url+'" target="_blank"><b>Video removed by Remove Embedded Video. Click to view in a new tab.</b></a>');
  24. $this.remove();
  25. });
  26. });