-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 813 Bytes
/
manifest.json
File metadata and controls
43 lines (43 loc) · 813 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"manifest_version": 3,
"name": "Lenify",
"version": "1.0",
"description": "Smooth scrolling with Lenis",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icon16-gray.png",
"48": "icon48-gray.png",
"128": "icon128-gray.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"lenis-wrapper.js",
"icon16.png",
"icon48.png",
"icon128.png",
"icon-gray16.png",
"icon-gray48.png",
"icon-gray128.png"
],
"matches": ["<all_urls>"]
}
]
}