Created
December 5, 2021 23:31
-
-
Save iniznet/8cbd4eff06566c83ad051d3f45ac0503 to your computer and use it in GitHub Desktop.
HXFile Downloader Click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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