-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (46 loc) · 1.17 KB
/
manifest.json
File metadata and controls
50 lines (46 loc) · 1.17 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
{
"manifest_version": 2,
"name": "BetterIntra",
"description": "Quality of life features for 42's intranet.",
"version": "1.1.1",
"permissions": [
"storage",
"https://*.intra.42.fr/*"
],
"browser_specific_settings": {
"gecko": {
"id": "betterintra@mpouillo",
"data_collection_permissions": {
"required": ["none"]
},
"strict_min_version": "58.0",
"update_url": "https://raw.githubusercontent.com/mpouillo/BetterIntra/main/updates.json"
}
},
"icons": {
"32": "img/icon32.png"
},
"browser_action": {
"default_icon": "img/icon32.png",
"default_title": "BetterIntra Settings",
"default_popup": "generic/popup/popup.html"
},
"content_scripts": [
{
"matches": ["*://*.intra.42.fr/*"],
"js": ["generic/storage.js", "generic/utils.js"],
"css": ["generic/style.css"],
"run_at": "document_start"
},
{
"matches": ["*://*.intra.42.fr/*"],
"js": ["generic/nicknamer.js"],
"run_at": "document_idle"
},
{
"matches": ["*://profile-v3.intra.42.fr/*"],
"js": ["generic/custom-background.js"],
"run_at": "document_start"
}
]
}