Files
nms/addon/manifest.json

29 lines
710 B
JSON

{
"manifest_version": 2,
"name": "Notice Me Senpai",
"version": "1.0.0",
"description": "AI Job Application Assistant",
"homepage_url": "https://git.corrupt.link/liz/nms",
"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"]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": [
"storage",
"activeTab",
"contextMenus"
]
}