scaffold: manifest v3, stub content script and popup, placeholder icons

This commit is contained in:
Joel Brock
2026-04-23 08:50:16 -07:00
parent 984bfd6cb9
commit 0c333a99f1
13 changed files with 70 additions and 0 deletions

1
content/behavior.js Normal file
View File

@@ -0,0 +1 @@
// Outlook Relook — behavior.js (stub, implemented in later task)

7
content/content.js Normal file
View File

@@ -0,0 +1,7 @@
// Outlook Relook — Content Script Entry Point
// Loaded by manifest on outlook.office.com/*
(function () {
'use strict';
console.log('[Outlook Relook] Content script loaded');
})();

1
content/injector.js Normal file
View File

@@ -0,0 +1 @@
// Outlook Relook — injector.js (stub, implemented in later task)

1
content/keyboard.js Normal file
View File

@@ -0,0 +1 @@
// Outlook Relook — keyboard.js (stub, implemented in later task)

1
content/observer.js Normal file
View File

@@ -0,0 +1 @@
// Outlook Relook — observer.js (stub, implemented in later task)

1
content/selectors.js Normal file
View File

@@ -0,0 +1 @@
// Outlook Relook — selectors.js (stub, implemented in later task)

View File

@@ -0,0 +1 @@
// Outlook Relook — settings-defaults.js (stub, implemented in later task)

BIN
icons/icon-128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 358 B

BIN
icons/icon-16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 B

BIN
icons/icon-48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

42
manifest.json Normal file
View File

@@ -0,0 +1,42 @@
{
"manifest_version": 3,
"name": "Outlook Relook",
"version": "0.1.0",
"description": "Minimalist reskin for Outlook Web App — clean themes, less clutter, more email.",
"permissions": ["storage", "activeTab"],
"content_scripts": [
{
"matches": ["https://outlook.office.com/*", "https://outlook.office365.com/*"],
"css": ["themes/base.css"],
"js": [
"content/settings-defaults.js",
"content/selectors.js",
"content/observer.js",
"content/behavior.js",
"content/keyboard.js",
"content/injector.js",
"content/content.js"
],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"web_accessible_resources": [
{
"resources": ["themes/*.css"],
"matches": ["https://outlook.office.com/*", "https://outlook.office365.com/*"]
}
]
}

14
popup/popup.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body { width: 320px; padding: 16px; font-family: system-ui, sans-serif; font-size: 13px; }
h1 { font-size: 16px; margin: 0 0 8px; }
</style>
</head>
<body>
<h1>Outlook Relook</h1>
<p>Settings panel coming soon.</p>
</body>
</html>

1
themes/base.css Normal file
View File

@@ -0,0 +1 @@
/* Outlook Relook — base.css (stub, implemented in later task) */