-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.firefox.json
More file actions
99 lines (99 loc) · 2.23 KB
/
Copy pathmanifest.firefox.json
File metadata and controls
99 lines (99 loc) · 2.23 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"manifest_version": 3,
"name": "SentinelEDU Shield",
"short_name": "SentinelEDU",
"version": "0.17.0",
"description": "AI-Free • Secure • Focused. Local-first content filtering for schools and enterprises.",
"author": "Thomas Bøg Petersen",
"homepage_url": "https://github.com/tpbillund/SentinelEDU-shield",
"browser_specific_settings": {
"gecko": {
"id": "sentineledu-shield@tbp-project.example",
"strict_min_version": "128.0"
}
},
"icons": {
"16": "src/icons/icon16.png",
"32": "src/icons/icon32.png",
"48": "src/icons/icon48.png",
"128": "src/icons/icon128.png"
},
"background": {
"scripts": [
"src/vendor/browser-polyfill.min.js",
"src/shared/rules.js",
"src/background/service-worker.js"
]
},
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "src/icons/icon16.png",
"32": "src/icons/icon32.png",
"48": "src/icons/icon48.png"
}
},
"options_page": "src/options/options.html",
"permissions": [
"storage",
"scripting",
"tabs",
"alarms",
"notifications"
],
"host_permissions": [
"https://*/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"src/vendor/browser-polyfill.min.js",
"src/shared/i18n.js",
"src/shared/rules.js",
"src/content-scripts/ai-detector.js"
],
"run_at": "document_start",
"all_frames": false
},
{
"matches": [
"<all_urls>"
],
"js": [
"src/content-scripts/rtc-tracker.js"
],
"run_at": "document_start",
"all_frames": true,
"world": "MAIN"
},
{
"matches": [
"<all_urls>"
],
"js": [
"src/vendor/browser-polyfill.min.js",
"src/shared/i18n.js",
"src/shared/rules.js",
"src/content-scripts/distraction-blocker.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"src/icons/icon128.png"
],
"matches": [
"<all_urls>"
]
}
]
}