Tells you the wait for Pizza Hut prior to ordering
当前为
// ==UserScript==
// @name Can I have Pizza Hut
// @namespace pizzahut
// @description Tells you the wait for Pizza Hut prior to ordering
// @include https://order.pizzahut.com/*
// @version 1
// @grant none
// ==/UserScript==
$('.cartOccasion').html('The estimated wait time is ' + window.store_promised_time + ' minutes.<br />');
if (window.store_promised_time <= 30) {
$('.cartOccasion').append('It is totally a good time to order!');
} else {
$('.cartOccasion').append('I would debate it if wait is worth it.');
}
$('.cartOccasion').css('font-size', '16px');