磁力快显

在磁力宝、磁力管家、Skrbt网站的磁力搜索列表增加磁力链接显示,方便下载资源。

目前為 2020-03-08 提交的版本,檢視 最新版本

// ==UserScript==
// @name         磁力快显
// @namespace    http://tampermonkey.net/
// @description  在磁力宝、磁力管家、Skrbt网站的磁力搜索列表增加磁力链接显示,方便下载资源。
// @author       zxf10608
// @version      1.2
// @homepageURL  https://greasyfork.org/zh-CN/scripts/397490
// @require      https://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// @include      *://www.clb.biz/*
// @include      *://www.ciliguanjia.icu/*
// @include      *://skrbt*.icu/*
// ==/UserScript==

(function() {
		var href1 = location.href.indexOf('clb');
		var href2 = location.href.indexOf('ciliguanjia');
		var href3 = location.href.indexOf('skrbt');
		
	if (href1 != -1 || href2 != -1 || href3 != -1) {
        var magnet2 = function() {
			if (href3 != -1) {
				var hrefx = '.result-resource-title';//Skrbt减少干扰元素
				$('.result-resource-meta-info').find("a:contains('磁力链接')").hide();//隐藏Skrbt原有假“磁力链接”
					} else {
					var hrefx = 'a[href*=\'detail\'],a[href*=\'cili\']';
					};
				
                $(hrefx).each(function() {
                    var torrent2Href = $(this).attr('href');
					if (href2 != -1) { 
						var temp2Link = torrent2Href.split('/cili-');
						var href2Magnet = 'magnet:?xt=urn:btih:' + temp2Link[1].substring(0,40);
						} else if (href3 != -1) {
							var temp2Link = torrent2Href.split('/detail/');	
							var href2Magnet = 'magnet:?xt=urn:btih:' + temp2Link[1].substring(6,46);	
							} else {
								var temp2Link = torrent2Href.split('/detail/');
								var href2Magnet = 'magnet:?xt=urn:btih:' + temp2Link[1].substring(0,40);
								}; 
					$(this).after('<a href="' + href2Magnet + '" target="_blank">&nbsp;&nbsp;磁力链接</a>');
                });
		};
		magnet2();
	};
})();