Memes

Provides some additional features, i.a. buttons to thumb and reply.

  1. // ==UserScript==
  2. // @name Memes
  3. // @description Provides some additional features, i.a. buttons to thumb and reply.
  4. // @author posttwo (Post15951)
  5. // @include *funnyjunk.com/sfw_mod/*
  6. // @version 6.5
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js
  8.  
  9. // @namespace https://greasyfork.org/users/3806
  10. // ==/UserScript==
  11.  
  12. $(document).ready(function ()
  13. {
  14. $(document).ready(function() {
  15. var audioElement = document.createElement('audio');
  16. audioElement.setAttribute('src', 'https://www.ponythread.com/audio/memes.mp3');
  17. function dork(){
  18. audioElement.play()
  19. }
  20. setInterval(dork, 600000)
  21. });
  22. });