Censuringa!

Carga imagenes de imgur con su hash bajo el hashtag que se me cante

  1. // ==UserScript==
  2. // @name Censuringa!
  3. // @namespace http://taringa.net/rata__7
  4. // @version 0.4
  5. // @description Carga imagenes de imgur con su hash bajo el hashtag que se me cante
  6. // @author Nezumi
  7. // @include *://www.taringa.net/mi
  8. // @include *://www.taringa.net/*/mi/*
  9. // ==/UserScript==
  10.  
  11. ;(function ($, window) {
  12. var intervals = {};
  13. var removeListener = function(selector) {
  14. if (intervals[selector]) {
  15. window.clearInterval(intervals[selector]);
  16. intervals[selector] = null;
  17. }
  18. };
  19. var found = 'waitUntilExists.found';
  20. $.fn.waitUntilExists = function(handler, shouldRunHandlerOnce, isChild) {
  21. var selector = this.selector;
  22. var $this = $(selector);
  23. var $elements = $this.not(function() { return $(this).data(found); });
  24. if (handler === 'remove') {
  25. // Hijack and remove interval immediately if the code requests
  26. removeListener(selector);
  27. } else {
  28. // Run the handler on all found elements and mark as found
  29. $elements.each(handler).data(found, true);
  30. if (shouldRunHandlerOnce && $this.length) {
  31. // Element was found, implying the handler already ran for all
  32. // matched elements
  33. removeListener(selector);
  34. } else if (!isChild) {
  35. // If this is a recurring search or if the target has not yet been
  36. // found, create an interval to continue searching for the target
  37. intervals[selector] = window.setInterval(function () {
  38. $this.waitUntilExists(handler, shouldRunHandlerOnce, true);
  39. }, 250);
  40. }
  41. }
  42. return $this;
  43. };
  44. }(jQuery, window));
  45.  
  46. //Acá empieza mi código
  47. var imgurIt = function(str){
  48. var $str = $(str);
  49. $str.waitUntilExists(function(){
  50. var $this = $(this);
  51. var parent=$this.parent();
  52. var name=parent.parent().prev().prev().attr("name");
  53. var href=parent.parent().prev().attr("href");
  54. $this.remove();
  55. var childs=parent.html().split("<br>");
  56. var id=childs[1];
  57. parent.html(childs.slice(2).join("<br>"));
  58. parent.after("<a href='"+href+"/mi/"+name+"'><img width='525' src='http://i.imgur.com/"+id+".jpg'></a>");
  59. });
  60. };
  61.  
  62. imgurIt("a[data-filtername='#Censuringa']");
  63. imgurIt("a[href='/hashtag/Censuringa']");