-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
65 lines (65 loc) · 1.37 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
56
57
58
59
60
61
62
63
64
65
{
"manifest_version": 3,
"name": "BrowsEyes",
"description": "Get a summary of your tab behavior and interaction",
"offline_enabled": true,
"icons": {
"16": "assets/icon-16x16.png",
"128": "assets/icon-128x128.png"
},
"keywords": [
"page",
"time",
"tracker",
"fun",
"utility",
"productivity",
"workflow",
"planning"
],
"version": "0.4.3",
"_permissions_comment": "webNavigation is needed to capture page reloads",
"permissions": [
"storage",
"webNavigation"
],
"action": {},
"background": {
"service_worker": "background.mjs",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.mjs"
],
"run_at": "document_end",
"world": "ISOLATED"
}
],
"web_accessible_resources": [
{
"_comment": "careful, by using * and **/* we are making all files available to both sw and content.js...",
"resources": [
"shared/*",
"content/*",
"assets/fonts/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"browser_specific_settings": {
"gecko": {
"id": "{f9cc6cde-1668-453b-a746-75fb3fde4771}",
"strict_min_version": "42.0"
}
}
}