Feliz Navidad - Aules

Quitando el gif y centralizando el texto que dice "Feliz Navidad"

// ==UserScript==
// @name        Feliz Navidad - Aules
// @name:es     Feliz Navidad - Aules
// @namespace   https://greasyfork.org/en/users/787028
// @match       https://aules.edu.gva.es/fp/course/view.php
// @grant       none
// @version     1.0.01
// @author      Roc3221337
// @license     MIT
// @description Removing a gif and centralyzing a text saying "Feliz Navidad."
// @description:es Quitando el gif y centralizando el texto que dice "Feliz Navidad"
// @homepageURL https://greasyfork.org/en/scripts/436218-feliz-navidad-aules
// ==/UserScript==

var gif = document.querySelector('#section-8 img[alt="Feliz Navidad"]')

if (gif){
  var text = document.querySelector('#section-8 .summary h3')
  text.style.textAlign = "center"
}

gif.remove()