base for AI migration/extension of WWCompanion

This commit is contained in:
2026-01-18 03:46:51 -05:00
commit a02c6ed1db
10 changed files with 5394 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"manifest_version": 3,
"name": "WWCompanion",
"version": "0.3.1",
"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
}
}