-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
55 lines (55 loc) · 1.15 KB
/
manifest.json
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
44
45
46
47
48
49
50
51
52
53
54
55
{
"manifest_version": 3,
"name": "Find Lite",
"description": "Find Lite is a simple extension that allows you to search for text on the current page.",
"version": "1.0.4",
"permissions": [
"storage"
],
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"web_accessible_resources": [
{
"resources": [
"content/content.css",
"icons/exit.png",
"icons/exit-white.png",
"icons/up-light.png",
"icons/up-dark.png",
"icons/up-white.png",
"icons/down-dark.png",
"icons/down-light.png",
"icons/down-white.png"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"action": {
"default_popup": "popup/popup.html",
"default_title": "Find Lite"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"app.js",
"content/panel.js",
"content/page.js",
"content/finder.js",
"content/listener.js",
"content/storage.js",
"content/content.js"
]
}
]
}