fix: background.js, remove: unnecessary permissions

This commit is contained in:
2026-03-18 13:46:03 +01:00
parent e8a14e7e69
commit 3176af094e
7 changed files with 85 additions and 57 deletions

View File

@@ -48,6 +48,8 @@ const App = () => {
}).catch(() => {});
}
});
} else {
console.debug("DevEnv");
}
} catch (err) {

23
src/background.js Normal file
View File

@@ -0,0 +1,23 @@
import * as OTPAuth from 'otpauth';
// eslint-disable-next-line no-undef
const api = typeof browser !== "undefined" ? browser : chrome;
api.runtime.onMessage.addListener((request, _sender, sendResponse) => {
if (request.action === "GENERATE_TOKEN") {
api.storage.local.get(['shasecret'], (data) => {
if (data.shasecret) {
const totp = new OTPAuth.TOTP({
issuer: 'US',
label: '2FA',
algorithm: 'SHA1',
digits: 6,
period: 30,
secret: OTPAuth.Secret.fromBase32(data.shasecret.trim().toUpperCase()),
});
sendResponse({ token: totp.generate() });
}
});
return true;
}
});

66
src/content.js Normal file
View File

@@ -0,0 +1,66 @@
(async function() {
// eslint-disable-next-line no-undef
const api = typeof browser !== "undefined" ? browser : chrome;
const fillAndSubmit = (code) => {
const input = document.getElementById("input2factor");
const button = document.getElementById("notification_2factor_button_ok");
const errorMsg = document.querySelector(".ui-state-error");
const isErrorVisible = errorMsg && errorMsg.style.display !== "none";
if (!input || input.value.length > 0 || isErrorVisible) {
return;
}
console.log("Autofill");
input.focus();
input.value = code;
['input', 'change', 'keyup', 'keydown'].forEach(evt => {
input.dispatchEvent(new Event(evt, { bubbles: true }));
});
setTimeout(() => {
if (button) {
console.log("Clicking 'Aceptar'");
const clickEvent = new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true
});
button.dispatchEvent(clickEvent);
}
}, 400);
};
const tryAutofill = async () => {
const data = await api.storage.local.get(['shasecret']);
if (data.shasecret) {
api.runtime.sendMessage({ action: "GENERATE_TOKEN" }, response => {
if (response?.token) {
fillAndSubmit(response.token);
}
});
}
};
const observer = new MutationObserver(() => {
if (document.getElementById("input2factor")) {
tryAutofill();
}
});
observer.observe(document.body, {
childList: true,
subtree: true
});
api.runtime.onMessage.addListener((request) => {
if (request.action === "autofill") {
fillAndSubmit(request.code);
}
});
tryAutofill();
})();