Greasy Fork is available in English.
通过steamworkshop.download下载工坊mod
// ==UserScript==// @name steam创意工坊下载workshop download// @namespace Anne// @version 1.0// @description 通过steamworkshop.download下载工坊mod// @author Owwkmidream// @match https://steamcommunity.com/sharedfiles/filedetails/?id=*// @icon http://store.steampowered.com/favicon.ico// @grant none// ==/UserScript==(function() {'use strict';var id = new RegExp("[0-9]{2,15}").exec(document.URL);var baseURL='http://steamworkshop.download/download/view/'+id;var element = document.getElementById("AddToCollectionBtn");var button = document.createElement('span');button.setAttribute('class', 'general_btn share tooltip');button.setAttribute('data-tooltip-text', '通过第三方网站下载');button.innerHTML = '<span>下载</span>';button.addEventListener("click",function(){window.open(baseURL);},false);element.parentNode.appendChild(button);})();