-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (27 loc) · 675 Bytes
/
Copy pathmanifest.json
File metadata and controls
27 lines (27 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"manifest_version": 3,
"name": "Nostalgia Sepia Theme",
"version": "1.1",
"description": "Adds a sepia filter to images, text glow with vintage font styling.",
"permissions": ["storage", "scripting", "tabs"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["caslon-antique.woff2"],
"matches": ["<all_urls>"]
}
]
}