1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "${tb_identifier}",
"strict_min_version": "68.0a1"
}
},
"name": "${tb_name}",
"description": "${description}",
"version": "${version}",
"author": "${author}",
"homepage_url": "${link}",
}
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
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
|
{
"manifest_version": 2,
"applications": {
"gecko": {
"id": "${tb_identifier}",
"strict_min_version": "78.0a1"
}
},
"name": "${tb_name}",
"short_name": "${tb_name}",
"description": "${description}",
"version": "${version}",
"author": "${author}",
"homepage_url": "${link}",
"default_locale": "fr",
"icons": { "16": "img/logo-16.png",
"32": "img/logo-32.png",
"48": "img/logo-48.png",
"64": "img/logo-64.png",
"80": "img/logo-80.png",
"96": "img/logo-96.png" },
"browser_action": {
"default_icon": "img/logo-32.png",
"default_popup": "panel/main.html",
"default_title": "Grammalecte [fr]",
"browser_style": false
},
"compose_action": {
"default_icon": "img/logo-32.png",
"default_area": "maintoolbar",
"default_popup": "panel/main.html",
"default_title": "Analyser",
"browser_style": false
},
"background": {
"scripts": [
"grammalecte/graphspell/helpers.js",
"background.js"
]
}
}
|