Goodnight> Add config UI WIP + framework libs

This commit is contained in:
2025-11-11 02:25:43 -05:00
parent 326876343f
commit 9a67088031
10 changed files with 884 additions and 3 deletions

View File

@@ -3,6 +3,7 @@
"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"
},
@@ -14,5 +15,14 @@
},
"background": {
"scripts": ["background/background.js"]
}
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": [
"storage",
"activeTab",
"contextMenus"
]
}

View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="container mx-auto">
<p></p>
<h1>Notice Me Senpai</h1>
<p></p>
<form>
<div class="row">
<label for="resumeFile" class="col-4 form-label">Resume</label>
<em class="col-8 form-text text-end" id="resumeFileName">No Resume On File</em>
</div>
<div class="row">
<input type="file" class="col-12 form-control" id="resumeFile" name="resumeFile" accept=".pdf"/>
</div>
<p></p>
<div class="row">
<div class="col-8"></div>
<input type="submit" class="col-4 btn" value="Save">
</div>
</form>
<script src="options.js"></script>
</body>
</html>