moved extension files into subdirectory

This commit is contained in:
2026-01-17 01:23:37 -05:00
parent be7d7a1bce
commit 411d585f84
9 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"manifest_version": 3,
"name": "WWCompanion",
"version": "0.2.2",
"description": "AI companion for WaterlooWorks job postings.",
"permissions": ["storage", "activeTab"],
"host_permissions": ["https://waterlooworks.uwaterloo.ca/*"],
"action": {
"default_title": "WWCompanion",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["https://waterlooworks.uwaterloo.ca/*"],
"js": ["content.js"]
}
],
"options_ui": {
"page": "settings.html",
"open_in_tab": true
}
}