Greasy Fork is available in English.
Play a sound if Oculus Rift S is in stock
// ==UserScript==
// @name NewEggOculusRIFTS
// @namespace NewEggOculusRIFTS
// @description Play a sound if Oculus Rift S is in stock
// @version 4
// @include https://www.newegg.com/oculus-rift-s-head-mounted-display/p/N82E16826910011*
// @author Xavier
// ==/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 (!(/PRE-RELEASE/i.test (document.body.innerHTML)))
{
document.title = "MATCH";
player.play()
}
else {
setTimeout(function(){ location.reload(); }, 5*1000);
}