Advertisement
Guest User

Untitled

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