20 lines
541 B
JavaScript
20 lines
541 B
JavaScript
setTimeout(() => { var otherAccount = document.getElementById("otherTileText");
|
|
if(otherAccount){
|
|
otherAccount.click();
|
|
}
|
|
},400);
|
|
|
|
setTimeout(() => {
|
|
var storageItem = browser.storage.local.get('msemail');
|
|
storageItem.then((res) => {
|
|
if(res.msemail != void(0)){
|
|
document.getElementById('i0116').value = res.msemail;
|
|
// document.getElementById('idSIButton9').click()
|
|
setTimeout(() => document.getElementById('idSIButton9').click(),2000);
|
|
}
|
|
});
|
|
},1000);
|
|
|
|
|
|
//TODO: Ennél biztosan van jobb megoldás
|
|
|