您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Play a sound if Oculus Rift S is in stock
// ==UserScript== // @name BHPOculusRiftS // @namespace BHPOculusRiftS // @description Play a sound if Oculus Rift S is in stock // @version 5 // @include https://www.bhphotovideo.com/c/product/1503556-REG/oculus_301_00178_01_rift_s_pc_powered.html* // @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 ((/In Stock/i.test (document.body.innerHTML))) { document.title = "MATCH"; player.play() } else { setTimeout(function(){ location.reload(); }, 5*1000); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址