您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skip an unlimited amount of songs with your free deezer account
- // ==UserScript==
- // @name Deezer Skip Unlimited
- // @namespace Steve2955
- // @description Skip an unlimited amount of songs with your free deezer account
- // @include http://*.deezer.*/*
- // @run-at document-start
- // @version 1.0
- // ==/UserScript==
- window.addEventListener("load", function() {
- var buttonSkip = document.querySelector('#page_player > div.player-bottom > div.player-controls > ul > li:nth-child(5) > div > button');
- buttonSkip.addEventListener("click", function(e) {
- dzPlayer.radioSkipCounter=1;
- }, false);
- }, true);