您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Download files with safe without annoying ads
// ==UserScript== // @name web.ligaudio.ru Safe dowloader // @namespace epicmorg.ligaudioru.downloader // @version 1.0.0.2 // @description Download files with safe without annoying ads // @license MIT // @author EpicMorg DevTeam // @grant unsafeWindow // @match *://web.ligaudio.ru/* // @match *://web.ligaudio.ru/mp3/* // @icon https://www.google.com/s2/favicons?sz=64&domain=ligaudio.ru // @grant none // ==/UserScript== // // Url: https://greasyfork.org/ru/scripts/486973-web-ligaudio-ru-safe-dowloader // (function() { document.querySelectorAll('a').forEach(function(link) { if (link.href.toLowerCase().endsWith('.mp3')) { link.href += '?play'; } }); })();