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"]
}
}

12
addon/popup/popup.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" href="style.css"> -->
</head>
<body>
<h1>Notice Me Senpai</h1>
<p>Your AI Job Application Assistant is ready to help!</p>
<script src="popup.js"></script>
</body>
</html>