您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Copy DL links from https://gazellegames.net/better.php?method=single to keyboard
当前为
// ==UserScript== // @name GGn Better DL // @namespace http://greasyfork.icu // @version 0.1 // @license MIT // @description Copy DL links from https://gazellegames.net/better.php?method=single to keyboard // @author drlivog // @match https://gazellegames.net/better.php?*method=single* // @icon https://www.google.com/s2/favicons?sz=64&domain=gazellegames.net // @grant none // ==/UserScript== /* globals $ */ (function() { 'use strict'; $('#content .linkbox').append('<br><input type=button id="copydllinks" value="Copy DL Links">'); $('#copydllinks').click( () => { let linklist = []; let dllist = $('span.torrent_links_block a.brackets'); for (let i=0; i<dllist.length; i++) { linklist.push(dllist[i].href); } navigator.clipboard.writeText(linklist.join("\n")); }); })();