// ==UserScript== // @name BestBuyOculusRiftS // @namespace BestBuyOculusRiftS // @description Play a sound if Oculus Rift S is in stock // @version 5 // @include https://www.bestbuy.com/site/oculus-rift-s-pc-powered-vr-gaming-headset-black/6343150.p?skuId=6343150* // @author Xavier // @downloadURL https://update.greasyfork.icu/scripts/401436/BestBuyOculusRiftS.user.js // @updateURL https://update.greasyfork.icu/scripts/401436/BestBuyOculusRiftS.meta.js // ==/UserScript== //LOAD LEAVE THE BROWSER ON THIS PAGE: https://www.bestbuy.com/site/oculus-rift-s-pc-powered-vr-gaming-headset-black/6343150.p?skuId=6343150 var player = document.createElement('audio'); player.src = 'https://notificationsounds.com/soundfiles/b5b41fac0361d157d9673ecb926af5ae/file-sounds-727-good-morning.mp3'; player.preload = 'auto'; if (!(/Sold Out<\/button>/i.test (document.body.innerHTML) ) ) { document.title = "MATCH"; player.play() } else { setTimeout(function(){ location.reload(); }, 6*1000); }