// ==UserScript==
// @name Banner
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author Andronio
// @match https://www.aliexpress.com/*
// @match https://ru.aliexpress.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.onload=function(){
var win1 = document.getElementsByClassName("next-icon next-icon-close next-medium next-dialog-close-icon");
win1.remove();
}
})();