bump: 4.0 - new react frontend

This commit is contained in:
2026-03-15 17:27:16 +01:00
parent 6438deaa4e
commit becc4f9445
24 changed files with 722 additions and 262 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

43
public/manifest.json Normal file
View File

@@ -0,0 +1,43 @@
{
"manifest_version": 3,
"name": "US 2FA Autofill",
"version": "4.0",
"description": "Rellena automáticamente el código 2FA en la Universidad de Sevilla.",
"permissions": [
"activeTab",
"scripting",
"tabs",
"storage"
],
"action": {
"default_popup": "index.html"
},
"icons": {
"128": "images/USAutofill_128.png"
},
"content_scripts": [
{
"matches": [
"https://sso.us.es/*"
],
"js": [
"scripts/content.js"
],
"run_at": "document_idle"
}
],
"host_permissions": [
"https://sso.us.es/*"
],
"browser_specific_settings": {
"gecko": {
"id": "{552d76df-199a-4058-a8ef-77478cad362f}",
"strict_min_version": "142.0",
"data_collection_permissions": {
"required": [
"none"
]
}
}
}
}