AmazonSwitch (X)

Play a sound if Switch is in stock

اعتبارا من 29-04-2020. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        AmazonSwitch (X)
// @namespace   AmazonSwitch (X)
// @description Play a sound if Switch is in stock
// @version     7
// @include 	https://www.amazon.com/gp/offer-listing/B07VJRZ62R/ref=olp_twister_child?ie=UTF8&m=ATVPDKIKX0DER&mv_color_name=0&mv_style_name=0*
// @include     https://www.amazon.com/gp/offer-listing/B07VJRZ62R/ref=olp_twister_child?ie=UTF8&m=ATVPDKIKX0DER&mv_color_name=0&mv_style_name=0*
// @include     https://www.amazon.com/gp/offer-listing/B07YZQSC5Y/ref=olp_twister_child?ie=UTF8&m=ATVPDKIKX0DER&mv_edition=0&mv_platform_for_display=0*
// @incldue     https://www.amazon.com/gp/offer-listing/B07VGRJDFY/ref=olp_twister_child?ie=UTF8&m=ATVPDKIKX0DER&mv_color_name=1&mv_style_name=0*
// @author      Xavier

// ==/UserScript==

//LOAD LEAVE THE BROWSER ON THIS PAGE: https://www.amazon.com/gp/offer-listing/B07XV4NHHN/

var player = document.createElement('audio');
player.src = 'https://notificationsounds.com/soundfiles/44f683a84163b3523afe57c2e008bc8c/file-22_v-2-single.mp3';
player.preload = 'auto';

if (/\$299.99/i.test (document.body.innerHTML) )
{
  document.title = "MATCH";
  player.play()
}
else {
setTimeout(function(){ location.reload(); }, 2*1000);
}