Go Back to Ambeint bag chage in External site

goes to the ambient edit page

As of 2018-09-03. See the latest version.

// ==UserScript==
// @name         Go Back to Ambeint bag chage in External site
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  goes to the ambient edit page
// @author       cpatters
// @match        https://aftlite-portal.amazon.com/pick_zone/list
// @grant        none
// ==/UserScript==

var d= new Date();
var h= d.getHours();
var m= d.getMinutes();
if((m == 29 && (h == 5 || h ==7 || h == 9 || h == 11 || h == 13 || h == 15 || h == 17 || h == 19) )){
window.open("https://aftlite-portal.amazon.com/pick_zone/edit_redirect?id=1", "_self");
}else if((m == 14 && ((h ==7 || h == 9 || h == 11 || h == 13 || h == 15 || h == 17 || h == 19) ))){
    window.open("https://aftlite-portal.amazon.com/pick_zone/edit_redirect?id=1", "_self");
}else(location.reload());
长期地址
遇到问题?请前往 GitHub 提 Issues。