Greasy Fork

网易云自动刷歌

网易云刷听歌量

// ==UserScript==
// @name        网易云自动刷歌
// @namespace    https://acwars.me/
// @version      0.0.1
// @description 网易云刷听歌量
// @author       acwars
// @match        https://music.163.com/
// ==/UserScript==

;(function () {
    var count = 1;
    setInterval(function() {
        var btn = document.querySelector('.nxt');
        btn.click();
        console.log('已播放:', count++);
    }, 70000);
})();