Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. // ==UserScript==
  2. // @name webm redirect
  3. // @namespace webm-redirect
  4. // @description Redirect 4chan webms to loopvid
  5. // @include https://i.4cdn.org/*
  6. // @include http://i.4cdn.org/*
  7. // ==/UserScript==
  8.  
  9. var url = document.location.toString();
  10. if(url.match(/\.webm$/)){
  11. window.location.replace("https://loopvid.appspot.com/?url=#" + url);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement