您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Play a sound if Oculus Rift S is in stock
// ==UserScript== // @name GameStopOculusRiftS // @namespace GameStopOculusRiftS // @description Play a sound if Oculus Rift S is in stock // @version 11 // @include https://www.gamestop.com/video-games/switch/accessories/faceplates-protectors-skins/products/nintendo-switch-tempered-glass-screen-protector/11099172.html?rrec=true* // @author Xavier // ==/UserScript== //LOAD LEAVE THE BROWSER ON THIS PAGE: https://www.gamestop.com/video-games/switch/accessories/faceplates-protectors-skins/products/nintendo-switch-tempered-glass-screen-protector/11099172.html?rrec=true var player = document.createElement('audio'); player.src = 'https://notificationsounds.com/soundfiles/a86c450b76fb8c371afead6410d55534/file-sounds-1108-slow-spring-board.mp3'; player.preload = 'auto'; if ((/"availability-in-stock">In Stock/i.test (document.body.innerHTML))) { document.title = "MATCH"; player.play() } else { setTimeout(function(){ location.reload(); }, 15*1000); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址