Initial app

This commit is contained in:
sto
2025-04-12 14:40:20 +02:00
parent 713e10f585
commit 1428aa9a26
5 changed files with 282 additions and 0 deletions

19
manifest.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "Puzzle leaderboard tracker",
"description": "Base Level Extension",
"version": "1.0",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"js": ["scripts/content.js"],
"matches": ["https://meet.google.com/*"]
}
]
}