mirror of
https://github.com/NohamR/AutoEnt.git
synced 2025-05-24 00:49:00 +00:00
24 lines
751 B
JavaScript
24 lines
751 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
const emailInput = document.getElementById('email');
|
|
const passwordInput = document.getElementById('password');
|
|
const saveButton = document.getElementById('saveButton');
|
|
|
|
chrome.storage.local.get(['email', 'password'], function (data) {
|
|
if (data.email) {
|
|
emailInput.value = data.email;
|
|
}
|
|
if (data.password) {
|
|
passwordInput.value = data.password;
|
|
}
|
|
});
|
|
|
|
saveButton.addEventListener('click', function () {
|
|
const email = emailInput.value;
|
|
const password = passwordInput.value;
|
|
|
|
chrome.storage.local.set({ email, password }, function () {
|
|
window.close();
|
|
});
|
|
});
|
|
});
|