Before you install, Greasy Fork would like you to know that this script contains antifeatures, which are things there for the script author's benefit, rather than yours.
Dieses Skript enhält Quelltext, welcher Ihren Verlauf nachverfolgt.
click vào icon Thông báo đang mở sẽ đóng nó lại
// ==UserScript== // @name Đóng nó // @namespace idmresettrial // @version 2021.02.13.01 // @description click vào icon Thông báo đang mở sẽ đóng nó lại // @author You // @match https://voz.vn/* // @grant none // @run-at document-start // @antifeature tracking // ==/UserScript== document.addEventListener('DOMContentLoaded', function () { 'use strict'; let btnEls = document.querySelectorAll(".p-nav-opposite a[data-xf-click]"); btnEls.forEach(function (btnEl) { btnEl.addEventListener("click", function(e) { e.preventDefault(); }); }); });