Greasy Fork

igg-games 自動轉到檔案下載頁面

不用等待下載時的五秒

目前为 2020-02-07 提交的版本。查看 最新版本

// ==UserScript==
// @name         igg-games 自動轉到檔案下載頁面
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  不用等待下載時的五秒
// @author       You
// @require      http://code.jquery.com/jquery-3.4.1.min.js
// @match        http://bluemediafiles.com/creatinglinks*
// @grant        none
// ==/UserScript==
if (location.href.indexOf("drive.google.com") != -1){
    location.href = "https://drive.google.com/file/d/" + location.href.substr(location.href.indexOf("?id=") + 4).substr(0,location.href.substr(location.href.indexOf("?id=") + 4).indexOf("&")) + "/view";
}
else {
    location.href = $(FinishMessage).attr("href");
}