Greasy Fork is available in English.

bt之家附件直下

单击附件直接下载,不再需要跳转到下载页面

// ==UserScript==
// @name        bt之家附件直下
// @author      LZY0699
// @create      2018-10-09
// @namespace   39599410@qq.com
// @description 单击附件直接下载,不再需要跳转到下载页面
// @include     http://btbtt.me/thread-index*
// @include     https://btbtt.me/thread-index*
// @include     http://www.btbtt.me/thread-index*
// @include     https://www.btbtt.me/thread-index*
// @version     1
// @grant       none
// ==/UserScript==

(function (){
  var nodes = document.querySelectorAll("a[href^='attach-dialog-']");
//   alert(nodes.length.toString());
  for(var i=0;i<nodes.length;i++){
    var url=nodes[i].href.replace(/attach-dialog-/,"attach-download-");
    nodes[i].href = url;
  }
})();