m.facebook.com sound notification

Play sound and vibrate your phone when a message comes.

目前为 2021-04-25 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name m.facebook.com sound notification
  3. // @namespace http://tampermonkey.net/
  4. // @version 3.0
  5. // @description Play sound and vibrate your phone when a message comes.
  6. // @author Psyblade
  7. // @match https://m.facebook.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var jewelElem = document.getElementById("mJewelNav").childNodes[2].getElementsByClassName("_59tg")[0]
  12. var observer = new MutationObserver(function(mutationsList, observer) {
  13. if(jewelElem.innerHTML != "0")
  14. {
  15. var audio = new Audio('https://raw.githubusercontent.com/psyblade12/Notification-in-m.facebook.com/master/FBMessSound.ogg');
  16. audio.play();
  17. window.navigator.vibrate(500);
  18. }
  19. });
  20.  
  21. observer.observe(jewelElem, {characterData: false, childList: true, attributes: false});