Malvinas en V6

Muestra el logo de la guerra de malvinas

// ==UserScript==
// @name        Malvinas en V6
// @namespace   https://gf.qytechs.cn/es/users/kchamat
// @description Muestra el logo de la guerra de malvinas
// @compatible  firefox
// @compatible  chrome
// @compatible  opera
// @match       *://*.taringa.net/*
// @version     1.2
// @license     GPLv3
// @grant       none
// @require     https://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==

this.$ = this.jQuery = jQuery.noConflict(true);
var d = new Date();
var dia = d.getDate();
var mes = d.getMonth();


function malvinas_v6(){
    if (dia == 2 && mes == 3)
        {
 var x = document.getElementsByClassName("header-main__logo");
 x[0].style.background = "url('https://k62.kn3.net/taringa/0/7/8/9/0/2/kchamat/53D.jpg')";
}
}

$(function() {

  malvinas_v6();
});

QingJ © 2025

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