T411 - Shoutbox notifications

Affiche une notification de bureau lors de la réception d'un message

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         T411 - Shoutbox notifications
// @version      1.0
// @namespace    https://www.t411.li
// @description  Affiche une notification de bureau lors de la réception d'un message
// @author       M1st3rN0b0d7
// @match        http://www.t411.ch/chati/*
// @match        https://www.t411.ch/chati/*
// @match        http://www.t411.li/chati/*
// @match        https://www.t411.li/chati/*
// @grant        none
// ==/UserScript==

var me = prompt("Veuillez entrer votre nom d'utilisateur T411.");
// var me = "M1st3rN0b0d7";

document.addEventListener('DOMContentLoaded', function () {
  if (Notification.permission !== "granted")
    Notification.requestPermission();
});

var me_2 = "@" + me + " : ";
var me_3 = "@" + me + " | ";
var me_4 = "@" + me + " ";
var me_mp = "» " + me;

var msg_backup = "";

function loop() {

  var element = document.getElementsByClassName("message")[0];
  var user    = element.getElementsByTagName("strong")[0];
  var user_mp = element.getElementsByTagName("strong")[1];
  var msg     = element.getElementsByTagName("p")[0];
  var msg2    = msg.innerText.replace(me_2, "");
  var msg3    = msg2.replace(me_3, "");
  var msg4    = msg3.replace(me_4, "");
  var test    = msg.innerText.search(me);

  if(user_mp !== undefined){

    var test2   = user_mp.innerText.search(me_mp);

  }

  if(test !== -1 && msg.innerText !== msg_backup) {

      msg_backup = msg.innerText;

      notifyMe();

  }

  if(test2 !== -1 && test2 !== undefined && msg.innerText !== msg_backup) {

    var user_mp2 = user.innerText.replace(me_mp, "");

    msg_backup = msg.innerText;

    notifyMe_mp();

  }

  function notifyMe() {

    if (!Notification) {

      alert('Notifications de bureau non supportées.');
     return;

    }

    if (Notification.permission !== "granted")
      Notification.requestPermission();

    else {

      var notification = new Notification('Shoutbox T411', {

        icon: 'https://www.t411.ch/themes/blue/images/logo.png',
        body: "Message de " + user.innerText + "\n" + msg4,

     });

      var audio = new Audio("https://cdn.rawgit.com/M1st3rN0b0d7/t411-ShoutboxNotifications/master/facebook_pop.mp3");
      audio.volume = 0.3;
      audio.play();

    }

  }

  function notifyMe_mp() {

    if (!Notification) {

      alert('Notifications de bureau non supportées.');
     return;

    }

    if (Notification.permission !== "granted")
      Notification.requestPermission();

    else {

      var notification = new Notification('Shoutbox T411', {

        icon: 'https://www.t411.ch/themes/blue/images/logo.png',
        body: "Message privé de " + user_mp2 + "\n" + msg4,

     });

      var audio = new Audio("https://cdn.rawgit.com/M1st3rN0b0d7/t411-ShoutboxNotifications/master/facebook_pop.mp3");
      audio.volume = 0.3;
      audio.play();

    }

  }

}

var loopFunction = window.setInterval(loop, 100);