// ==UserScript== // @name msdn ed2k转磁力链接脚本 // @namespace http://tampermonkey.net/ // @version 1.0 // @description 选中ed2k先弹窗确认是否转换,确定自动生成磁力链接,附带BT转直链网站,一键复制磁力 // @author 小我 // @match https://msdn.itellyou.cn/* // @grant GM_setClipboard // @grant GM_addStyle // @license MIT // ==/UserScript== (function () { 'use strict'; GM_addStyle(` #convertModal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 440px; background: linear-gradient(145deg, #1e293b, #334155); border-radius: 16px; padding: 24px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); z-index: 999999; display: none; color: #f1f5f9; font-family: system-ui; } .modal-title { font-size: 18px; font-weight: bold; margin-bottom: 16px; color: #38bdf8; display: flex; align-items: center; gap: 8px; } .line-item { margin: 14px 0; } .label-text { font-size: 13px; color: #94a3b8; margin-bottom: 6px; } .content-box { background: #0f172a; padding: 10px 12px; border-radius: 8px; word-break: break-all; font-size: 13px; line-height: 1.5; } .btn-wrap { display: flex; gap: 12px; margin-top: 22px; justify-content: flex-end; } .btn { padding: 9px 20px; border-radius: 8px; border: none; font-size: 14px; cursor: pointer; transition: 0.2s; } .btn-copy { background: #0ea5e9; color: white; } .btn-copy:hover { background: #0284c7; } .btn-close { background: #475569; color: white; } .btn-close:hover { background: #334155; } .tip-desc { font-size: 12px; color: #a5b4fc; margin-top: 8px; } `); const modal = document.createElement('div'); modal.id = 'convertModal'; modal.innerHTML = `