Initial commit of PhoneCoach project

This commit is contained in:
2025-08-16 03:37:24 +05:30
parent f14485a833
commit 5326b855dd
8 changed files with 436 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"manifest_version": 3,
"name": "PhonoCoach",
"version": "1.0",
"description": "Lets you practise pronunciation on any webpage you're on",
"permissions": ["storage", "activeTab", "scripting"],
"host_permissions": ["http://localhost:8000/*"],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}