Guest User

Untitled

a guest
Apr 6th, 2015
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name       2ch pastebin
  3. // @version    0.2
  4. // @match      https://2ch.hk/*
  5. // ==/UserScript==
  6.  
  7. $(document).ready(getIframe);
  8.  
  9. $('.posts').bind('DOMSubtreeModified', getIframe);
  10.  
  11. function getIframe() {
  12.   $('a[href^="http://pastebin.com/"]').each(function() {
  13.     var id = this.href.match(/pastebin.com\/(\w+)/)[1];
  14.  
  15.     if ($(this).next().is('.pastebin')) return;
  16.  
  17.     $('<div>', {
  18.       class: 'pastebin',
  19.       html: '<iframe src="https://pastebin.com/embed_iframe.php?i='+id+'" style="border:none;width:100%;height:100%"></iframe>'
  20.     }).insertAfter($(this));
  21.   });
  22. }
Advertisement
Add Comment
Please, Sign In to add comment