// ==UserScript==
// @name AliCap
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://*.aliexpress.com/*
// @match https://*.aliexpress.ru/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded',add);
} else {
add();
}
function add(){
document.body.insertAdjacentHTML('beforeend', '<div id="cont1" style="padding:5px;width:13%;height:58%;top:15%;left:5px;position:fixed;backdrop-filter: blur(2px);border-radius:8px;border:1px solid #e6e6e680;display:flex;flex-direction: column;background:#e6e6e680;color:white;z-index:9999999;"></div>');
var main = document.getElementById('cont1');
var cap =[
'5ufh','7fkt','9gnn','bwsj','dbpr','efu2','mrrp','rcvc','usn8','uh9g'
]
for(var i=0;i<10;i++){
var curr=i+1;
var str=cap[i]
main.insertAdjacentHTML('beforeend', '<div id="c'+curr+'" style="background:#0099dd;text-align:center;border:0px solid transparent;border-radius:1px;color:white;width:100%;height:9%;padding:3px;margin-bottom:5px;">'+str+'</div>');
document.getElementById('c'+curr).addEventListener('click',enter)
}
document.body.appendChild( document.getElementById('cont1'));
}//add
function enter(){
console.log(event.target);
var c_form;
for(var j=1;j<11;j++){
c_form = document.getElementById('nc_'+j+'_captcha_input');
if(!c_form){ continue;}else{break;}
}
var nivs = Object.getOwnPropertyDescriptor(window.HTMLInputElement.prototype, 'value').set;
nivs.call(c_form, event.target.innerText);
}
})();