Bare example from mdn/webextensions-examples
This commit is contained in:
18
addon/manifest.json
Normal file
18
addon/manifest.json
Normal 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"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user