Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/f4246f2fb20bad8680118836a0ca70d4.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name 网易云自动刷歌
// @namespace https://acwars.me/
// @version 0.0.1
// @description 网易云刷听歌量
// @author acwars
// @match https://music.163.com/
// @downloadURL none
// ==/UserScript==
;(function () {
var count = 1;
setInterval(function() {
var btn = document.querySelector('.nxt');
btn.click();
console.log('已播放:', count++);
}, 140000);
})();