Greasy Fork镜像 支持简体中文。

Factorio Mod Downloader

A shortcut script link to https://1488.me/factorio/mods/

  1. // ==UserScript==
  2. // @name Factorio Mod Downloader
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description A shortcut script link to https://1488.me/factorio/mods/
  6. // @author Q.Z.Lin
  7. // @match https://mods.factorio.com/mod/*
  8. // @icon https://wiki.factorio.com/images/thumb/Iron_gear_wheel.png/32px-Iron_gear_wheel.png
  9. // @grant none
  10. // @require https://cdn.staticfile.org/jquery/3.6.0/jquery.min.js
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. 'use strict';
  16. let downloadBtn = document.querySelector("body > div.container > div > div.panel.pt0.pb0.mb32 > div.panel-inset-lighter.flex-column.p0 > div.panel-inset.m0.w100.p4 > div > div.text-right.flex.flex-items-center.flex-end > div.btn.mod-download-button.btn-download");
  17. let directDownload = $(downloadBtn).clone()
  18. directDownload.children().text("1488me")
  19. directDownload.children().attr("href","https://1488.me/factorio/mods/#"+window.location.href)
  20. $(downloadBtn).parent().append(directDownload)
  21. })();
  22.  
  23. $(window).on("load", function () {
  24. // Handler when all assets (including images) are loaded
  25. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址