-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (51 loc) · 1.4 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
{
"manifest_version": 3,
"name": "Tomara's Extension",
"version": "1.0.0",
"description": "Chrome Extension for Tomara",
"icons": {
"32": "images/icons/icon-32.ico"
},
"content_scripts": [
{
"js": [
"src/entry.js"
],
"matches": [
"file:///*/test/index.html"
]
}
],
"web_accessible_resources": [
{
"matches": ["<all_urls>"],
"resources": [
"dist/content/config.js",
"dist/content/index.js",
"dist/content/api/fake-dataset.js",
"dist/content/api/requester.js",
"dist/content/controllers/input-controller.js",
"dist/content/ui/suggestions-box-default.js",
"dist/content/ui/suggestions-box.js",
"dist/content/ui/suggestions-container.js",
"dist/content/utils/classes.js",
"dist/content/utils/const.js",
"dist/content/utils/dom-functions.js",
"dist/content/utils/keyboard-functions.js",
"dist/content/utils/log-functions.js",
"dist/content/utils/string-functions.js",
"dist/content/wrapper/exceptions.js",
"dist/content/wrapper/functions.js",
"dist/content/wrapper/wrapper-manager.js",
"dist/content/wrapper/wrappers.js"
]
},
{
"matches": ["<all_urls>"],
"resources": [
"public/css/tomara-extension-styles.css",
"public/fonts/bpg_arial_2009.ttf"
]
}
]
}