Skip to content

Instantly share code, notes, and snippets.

@a1678991
Created December 12, 2021 15:45
Show Gist options
  • Save a1678991/632dfc059256f9ff56aea418ce3c3477 to your computer and use it in GitHub Desktop.
Save a1678991/632dfc059256f9ff56aea418ce3c3477 to your computer and use it in GitHub Desktop.
ダウンロードページ開いたら勝手にダウンロードして戻る
// ==UserScript==
// @name Nexus Auto Downloader
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Auto download files with "SLOW DOWNLOAD"
// @author @a1678991
// @match https://www.nexusmods.com/*/mods/*?tab=files&file_id=*
// @grant none
// ==/UserScript==
'use strict'
var download_button = document.getElementById('slowDownloadButton')
setTimeout(download_button.click(), 4000)
setTimeout(window.history.back(), 5000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment