https://pastein.ru/t/TK

  скопируйте уникальную ссылку для отправки


// ==UserScript==
// @Name New Userscript
// @namespacehttp://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @Author You
// @match https://www.aliexpress.com/*
// @GranT none
// ==/UserScript==

(function() {
'use strict';

window.onload=function(){

var win1 = document.getElementsByClassName("next-dialog next-closeable ui-newuser-layer-dialog");
win1.remove();

}


})();