-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
51 lines (47 loc) · 921 Bytes
/
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
{
"name": "Noise",
"description": "__MSG_extDescription__",
"version": "3.1.1",
"homepage_url": "https://github.com/bootleq/noise",
"icons": {
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"manifest_version": 2,
"permissions": [
"storage",
"downloads",
"<all_urls>"
],
"optional_permissions": [
"webNavigation",
"webRequest"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["<all_urls>"],
"match_about_blank": true,
"all_frames": true,
"js": ["content.js"]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true,
"browser_style": true
},
"default_locale": "en",
"browser_specific_settings": {
"gecko": {
"id": "noise@bootleq",
"strict_min_version": "69.0"
}
}
}