Copy Magnets

Copy magnet links to clipboard

À partir de 2016-03-05. Voir la dernière version.

// ==UserScript==
// @name         Copy Magnets
// @namespace    http://rix.li/
// @version      0.2
// @description  Copy magnet links to clipboard
// @author       rix
// @match        *://www.tokyotosho.info/*
// @require      http://code.jquery.com/jquery-latest.js
// @grant        GM_setClipboard
// @grant        GM_log
// ==/UserScript==

var list = $('a[href^=magnet]');
var links = [];

list.each(function(){
    links.push(this.href);
});

list.click(function(e) {
    e.preventDefault();
    GM_setClipboard(this.href, 'text');
});

$('<div style="text-align: center; margin: 20px;"></div>').append(
    $('<button>Copy All</button>').click(function(){
        GM_setClipboard(links.join('\n'));
    })
).insertBefore('.listing');