TargetRingFit

Play a sound if Ring Fit Adventure is in stock

目前为 2020-04-20 提交的版本。查看 最新版本

// ==UserScript==
// @name        TargetRingFit
// @namespace   TargetRingFit
// @description Play a sound if Ring Fit Adventure is in stock
// @version     2
// @include 	https://www.target.com/p/ring-fit-adventure-nintendo-switch/-/A-76593324*
// @author      Xavier

// ==/UserScript==

//LOAD LEAVE THE BROWSER ON THIS PAGE: https://www.target.com/p/ring-fit-adventure-nintendo-switch/-/A-76593324

var player = document.createElement('audio');
player.src = 'https://notificationsounds.com/soundfiles/a86c450b76fb8c371afead6410d55534/file-sounds-1108-slow-spring-board.mp3';
player.preload = 'auto';

if (/"Ship it"/i.test (document.body.innerHTML) )
{
  document.title = "MATCH";
  player.play()
}
else {
setTimeout(function(){ location.reload(); }, 15*1000);
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址