Greasy Fork

Greasy Fork is available in English.

通过背景音乐对网页进行后台保活

通过背景音乐对网页进行后台保活,请自行修改对应网站

// ==UserScript==
// @name         通过背景音乐对网页进行后台保活
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  通过背景音乐对网页进行后台保活,请自行修改对应网站
// @author       天天发蛋糕
// @include        
// @include        
// @grant        none
// ==/UserScript==

var myAudio = new Audio('http://adventure.land/sounds/loops/empty_loop_for_js_performance.wav');
myAudio.addEventListener('ended', function() {
    this.currentTime = 0;
    this.play();
}, false);
myAudio.play();