磁力快显

在磁力宝、BTSOW、无极磁链ØMagnet等的搜索列表增加磁力链接显示,方便快速下载资源。

// ==UserScript==
// @name         磁力快显
// @author       zxf10608
// @version      3.6
// @homepageURL  https://greasyfork.org/zh-CN/scripts/397490
// @icon      	 https://cdn.jsdelivr.net/gh/zxf10608/JavaScript/icon/magnet00.png
// @description  在磁力宝、BTSOW、无极磁链ØMagnet等的搜索列表增加磁力链接显示,方便快速下载资源。
// @require      https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js
// @include      *://clb*.*/s/*
// @include      *://www.btmov*.*/so/*
// @include      *://*mag.net/search*
// @include      *://btsow*/search/*
// @include      *://www.*yuhuage*.*/search/*
// @connect      *
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_openInTab
// @grant        GM_notification
// @grant        GM_setClipboard
// @grant        GM_xmlhttpRequest
// @grant        GM_registerMenuCommand
// @grant        GM_unregisterMenuCommand
// @run-at       document-end
// @license      GPL License
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function() {
	
	'use strict';
	if(GM_getValue('open')==1){
		let close=GM_registerMenuCommand ('关闭复制弹窗通知', function(){
			GM_setValue('open',0); 
			GM_unregisterMenuCommand(close);
			location.reload();
		});
	}else{
		let open=GM_registerMenuCommand ('开启复制弹窗通知', function(){
			GM_setValue('open',1); 
			GM_unregisterMenuCommand(open);
			location.reload();
		});
	};
	
	$(document).ready(function(){
		
		$('.common-link:odd,.search-tips,#cps-wrap').remove();
		$('a:not([href^="magnet:"])').each(function(){
			var reg = /(^|\/|&|-|\.|\?|=|:)([a-fA-F0-9]{40})/;
			var link = $(this).attr('href') || '';
			if(reg.test(link)){
				$(this).attr('target','_blank');
				var newLink = 'magnet:?xt=urn:btih:' + link.match(reg)[2];
				$(this).after('<img src="https://cdn.jsdelivr.net/gh/zxf10608/JavaScript/icon/magnet00.png" class="mag1" href='+newLink+' title="识别到磁力链接,左键打开,右键复制\n'+newLink+'" target="_blank" style="z-index:9123456789;display:inline-block;cursor:pointer;margin:0px 5px 2px;border-radius:50%;border:0px;vertical-align:middle;outline:none!important;padding:0px!important;height:20px!important;width:20px!important;left:0px!important;top:0px!important;">');
			
			};
		});
	
		if($('.mag1').length < 1){
			function magnetCall(href){
				return new Promise(function(resolve, reject){
					GM_xmlhttpRequest({
						method: 'GET',
						url: href,
						onload: function(data,status) {
							if(data.readyState==4 && data.status==200){
								var htmlTxt = data.responseText;
								resolve(htmlTxt);
							};	
						},
						onerror: function(error) {
							reject(error);
            },
					});
				});
			};
			

			var magnetEl = $('h3 a[href!="/"],li a[href!="/"],td a[href!="/"],dd a[href!="/"]'); 
			magnetEl.attr({'target':'_blank','style':'display:inline-block;'});
			
			if (magnetEl.length<20){
				var n = magnetEl.length; 
			}else{
				var n = 20; 
			};

			let arr = [];
			for (let i = 0; i < n; i++) {
				var link = magnetEl.eq(i).attr('href');
				if (/^\//.test(link)) {
					link = location.origin+link;
				};
							
				magnetCall(link).then(function(htmlTxt){
					arr[i] = new Promise((resolve, reject) => {
						var newLink = htmlTxt.match(/href="(magnet.{54}).*"/);
						if (newLink != null ) {
							magnetEl.eq(i).after('<img src="https://cdn.jsdelivr.net/gh/zxf10608/JavaScript/icon/magnet00.png" class="mag1" href='+newLink[1]+'  title="识别到磁力链接,左键打开,右键复制\n'+newLink[1]+'" target="_blank" style="z-index:9123456789;display:inline-block;cursor:pointer;margin:0px 5px 2px;border-radius:50%;border:0px;vertical-align:middle;outline:none!important;padding:0px!important;height:20px!important;width:20px!important;left:0px!important;top:0px!important;">');
						}else{
							console.log(link+' 无磁力链接');
						};
						resolve(i);
					});
				});
			};
			
			Promise.all(arr).then((res) => {
				console.log('磁力链接有'+magnetEl.length+'个。');
				console.log('磁力链接已全部加载完成。');
			}).catch((err) => {
				console.log('磁力链接加载失败。');
			});
		}else{
			console.log('磁力链接有'+$('.mag1').length+'个。');
		};	
		
		setTimeout(function(){
			if($('.115offline').length>0){
				$('.mag1').remove();
			};
		},800);
		
	});
	
	$('body').on('contextmenu click','.mag1', function(e) {
		var link=$(this).attr('href')
		if(e.type == 'click'){ 
			GM_openInTab(link,false);
		}else{
			GM_setClipboard(link);
			if(GM_getValue('open')==1){
				GM_notification({
					title:'磁力快显:',
					text:'磁力链接复制成功!',
					timeout:2000,
				});
			};
			console.log('磁力链接复制成功:\n'+link);
		};	
		return false;
	});
	
})();