-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
62 lines (62 loc) · 1.27 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
{
"manifest_version": 3,
"name": "Mock Extension",
"version": "0.1",
"description": "Mock Extension for testing",
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"tabs",
"scripting"
],
"action": {
"default_popup": "extension.html",
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"256": "icons/icon256.png",
"512": "icons/icon512.png"
}
},
"options_ui": {
"page": "options.html"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "MockExtensionID",
"update_url": "https://raw.githubusercontent.com/imigueldiaz/firefox-updates-json/main/updates.json"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"lib/purify.min.js"
]
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self';"
},
"web_accessible_resources": [
{
"resources": [
"_locales/*"
],
"matches": [
"<all_urls>"
]
}
]
}