Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name 2ch pastebin
- // @version 0.2.1
- // @include *2ch.*/*
- // @grant none
- // ==/UserScript==
- $(document).ready(getIframe);
- $('.posts').bind('DOMSubtreeModified', getIframe);
- function getIframe() {
- $('a[href^="http://pastebin.com/"]').each(function() {
- var id = this.href.match(/pastebin.com\/(\w+)/)[1];
- if ($(this).next().is('.pastebin')) return;
- $('<div>', {
- class: 'pastebin',
- html: '<iframe src="https://pastebin.com/embed_iframe.php?i='+id+'" style="border:none;width:500px;height:500px"></iframe>'
- }).insertAfter($(this));
- });
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement