make a fart sound everytime you scroll up or down a page
As of
// ==UserScript==
// @name The Fart Effect
// @namespace http://tampermonkey.net/
// @version 0.1
// @license MIT
// @description make a fart sound everytime you scroll up or down a page
// @author xbin18
// @match *://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
"use strict"
// Your code here...
window.onscroll = ()=>{
let fart = new Audio("https://www.soundjay.com/human/fart-01.mp3");
fart.volume = 1;
fart.play();
}
})();