// ==UserScript==
// @name GGn Better DL
// @namespace https://greasyfork.org
// @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
// @downloadURL none
// ==/UserScript==
/* globals $ */
(function() {
'use strict';
$('#content .linkbox').append('
');
$('#copydllinks').click( () => {
let linklist = [];
let dllist = $('span.torrent_links_block a.brackets');
for (let i=0; i