javdb_helper

添加推送磁力链接到 aria2 的下载按钮

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name            javdb_helper
// @version         1.0.0
// @author          洪世贤
// @include         http*://*javdb.com/v/*
// @description     添加推送磁力链接到 aria2 的下载按钮
// @require         https://code.jquery.com/jquery-2.1.4.min.js

// @namespace https://greasyfork.org/users/821273
// ==/UserScript==
const BASE_HOST = '' // Aria2 RPC 地址,例如 https://aria2.com:6800/
const TOKEN = '' // Aria2 RPC 密钥
// 下载到 Aria2
const ariaDownload = function (download_url) {
  const url = `${BASE_HOST}/jsonrpc`
  var json_rpc = {
    jsonrpc: '2.0',
    id: '',
    method: 'aria2.addUri',
    params: [
      `token:${TOKEN}`,
      [download_url],
    ]
  };
  $.ajax({
    url: url,
    type: 'POST',
    crossDomain: true,
    processData: false,
    data: JSON.stringify(json_rpc),
    contentType: 'application/json',
    success: function (response) {
      const notifyElement = document.createElement("div")
      notifyElement.id = "notifyElement"
      notifyElement.className = "notification is-success"
      notifyElement.textContent = "发送成功 ~~"
      $(notifyElement).css({ position: 'fixed', right: '45%', bottom: '45%' })
      document.body.append(notifyElement)
      function removeNotify () {
        $("#notifyElement").remove()
      }
      setTimeout(removeNotify, 2000)
    }
  });
}

// 添加推送到 Aria2 按钮
$("#magnets-content td:last-child button").each(
  function () {
    $(this).parent().css('width', 170)
    const ariaButton = document.createElement('button');
    ariaButton.textContent = "发送到 Aria2"
    ariaButton.className = "button is-info is-light is-small "
    const that = $(this).attr('data-clipboard-text')
    ariaButton.onclick = function () {
      ariaDownload(that)
    }
    $(this).before(ariaButton)
  }
)