-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
43 lines (43 loc) · 917 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
{
"manifest_version": 2,
"name": "Assistant RGAA",
"description": "Extension de navigateur permettant d'auditer des pages web en suivant le référentiel RGAA.",
"version": "1.3.0",
"icons": {
"48": "img/icon-48.png",
"96": "img/icon-96.png"
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"browser_action": {
"default_icon": "img/icon-96.png",
"default_title": "Assistant RGAA"
},
"permissions": [
"tabs",
"storage",
"<all_urls>"
],
"background": {
"scripts": [
"dist/common.js",
"dist/background.js"
]
},
"options_ui": {
"page": "pages/options.html"
},
"web_accessible_resources": [
"pages/panel.html",
"pages/devtools.html",
"data/references/3-2016.json",
"data/references/3-2017.json",
"data/references/4-2019.json",
"data/references/4-2021.json",
"data/references/4-2023.json"
]
}