Auto Downloader

Automatically download on drive.google.com, file4go.net and mp4upload.com

目前為 2021-08-10 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Auto Downloader
// @namespace    AutoDownloader
// @version      0.4
// @description  Automatically download on drive.google.com, file4go.net and mp4upload.com
// @author       hacker09
// @match        http://www.file4go.net/*
// @match        https://www.mp4upload.com/*
// @match        https://drive.google.com/uc?id=*
// @icon         https://cdn.iconscout.com/icon/free/png-256/icloud-download-475016.png
// @grant        none
// @run-at       document-end
// @grant        window.close
// ==/UserScript==

(function() {
  'use strict';
  if (location.href.match('file4go') !== null) //If the user is on the file4go website
  { //Starts the if condition
    if (document.querySelectorAll("form")[1] !== undefined) //If the Create download button exists
    { //Starts the if condition
      document.querySelectorAll("form")[1].submit(); //Click on the create download button
    } //Finishes the if condition
    document.querySelector("a.novobotao.download").click(); //Clicks on the final download button
    setTimeout(function() { //Starts the setTimeout function
      window.top.close(); //Closes the tab
    }, 1000); //Finishes the setTimeout function
  } //Finishes the if condition

  if (location.href.match('mp4upload') !== null) //If the user is on the mp4upload website
  { //Starts the if condition
    if (document.querySelector("#todl") !== null) //If the  go to download button exists
    { //Starts the if condition
      document.querySelector("#todl").click(); //Click on the go to download button
    } //Finishes the if condition
    document.querySelector("#downloadbtn").click(); //Clicks on the final download button
    setTimeout(function() { //Starts the setTimeout function
      window.top.close(); //Closes the tab
    }, 2000); //Finishes the setTimeout function
  } //Finishes the if condition

  if (location.href.match('drive.google') !== null) //If the user is on the google drive website
  { //Starts the if condition
    document.querySelector("#uc-download-link").click(); //Clicks on the download button
    setTimeout(function() { //Starts the setTimeout function
      window.top.close(); //Closes the tab
    }, 2000); //Finishes the setTimeout function
  } //Finishes the if condition
})();