您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Extracts Download Links From Farfesh.Com
// ==UserScript== // @name Farfesh.Com Download Links Extractor // @namespace DevelopmentSimplyPut(developmentsimplyput.blogspot.com) // @description Extracts Download Links From Farfesh.Com // @include *farfesh.com/ViewSongs.asp* // @require http://code.jquery.com/jquery-latest.min.js // @version 0.0.1.20141023133757 // ==/UserScript== jQuery.noConflict(); (function($) { setTimeout(function(){ Run(); }, 0); function Run() { var urls = new Array(); $("a[href*='http://www.farfesh.com/MusicPlayer.asp'][href*='SingerID'][href*='albumID'][href*='songID'][href*='MP3File']").each(function(index, value) { var oldHref = $(value).attr("href"); var parts = oldHref.split("MP3File="); if(typeof(parts) != 'undefined' && null != parts && parts.length > 1) { var newHref = ("http://entertainment.farfesh.com/music/arabic/" + parts[1]).replace('/arabic/arabic/', '/arabic/'); $(value).attr("href", newHref); urls.push(newHref); } }); $("<span style='direction:ltr;display:block;width:100%;height:60px;color:blue;background:red;'><textarea cols='100'>" + urls.join(' ') + "</textarea></span><br />").insertBefore("table#main_table"); } })(jQuery);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址