Skip to content

Instantly share code, notes, and snippets.

@iniznet
Created December 5, 2021 23:31
Show Gist options
  • Save iniznet/8cbd4eff06566c83ad051d3f45ac0503 to your computer and use it in GitHub Desktop.
Save iniznet/8cbd4eff06566c83ad051d3f45ac0503 to your computer and use it in GitHub Desktop.
HXFile Downloader Click
// ==UserScript==
// @name HXFile Downloader Click
// @namespace https://github.com/iniznet/
// @version 1.0.0
// @description Automatically click the download button
// @author niznet
// @match https://hxfile.co/*
// @icon https://www.google.com/s2/favicons?domain=hxfile.co
// @grant none
// ==/UserScript==
(function() {
'use strict';
let dlClick = document.getElementById('downloadbtn');
let dlConfirm = document.querySelector('.fileInfo .download-button .btn-dow');
if (dlClick) {
dlClick.click();
}
if ( dlConfirm ) {
dlConfirm.click();
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment