Bare example from mdn/webextensions-examples

This commit is contained in:
2025-11-10 16:23:31 -05:00
parent d71c0c4629
commit f9224e5a97
26 changed files with 653 additions and 16714 deletions

18
addon/manifest.json Normal file
View File

@@ -0,0 +1,18 @@
{
"manifest_version": 2,
"name": "Notice Me Senpai",
"version": "1.0.0",
"description": "AI Job Application Assistant",
"icons": {
"32": "assets/logo-32.png"
},
"browser_action": {
"default_icon": "assets/logo-32.png",
"default_title": "Notice Me Senpai",
"default_popup": "popup/popup.html",
"browser_style": true
},
"background": {
"scripts": ["background/background.js"]
}
}