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