Add project scaffolding
check / check (push) Successful in 10s

Makefile, Dockerfile, CI workflow, prettier config, manifests for
Chrome (MV3) and Firefox (MV2), source directory structure, and
minimal test suite. All checks pass.
Цей коміт міститься в:
2026-02-24 09:48:21 +07:00
джерело c2ff5d1788
коміт 065f0eaa81
22 змінених файлів з 3521 додано та 0 видалено
+20
Переглянути файл
@@ -0,0 +1,20 @@
{
"manifest_version": 3,
"name": "AutistMask",
"version": "0.1.0",
"description": "Minimal Ethereum wallet for Chrome",
"permissions": ["storage", "activeTab"],
"action": {
"default_popup": "src/popup/index.html"
},
"background": {
"service_worker": "src/background/index.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["src/content/index.js"],
"run_at": "document_start"
}
]
}