The Fart Effect

make a fart sound everytime you scroll up or down a page

目前為 2021-11-25 提交的版本,檢視 最新版本

// ==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();
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址