Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/2eadb4fc2bbb86f346f3fc4b9e867184.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name Hiding Yahoo Alert
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Hiding modal-outer
// @author Xiao Yi
// @match https://mail.yahoo.com/d/folders/1?.src=fp&.intl=tw&.lang=zh-Hant-TW
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function () {
var bitch = document.querySelectorAll('[aria-labelledby="adblock-delay-dismiss-cue"]');
bitch[0].style.display = "none";
console.log('Bye bye bitch');
})
})();