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": "Grammalecte [fr]",
"short_name": "Grammalecte [fr]",
"version": "0.6",
"applications": {
"gecko": {
"id": "French-GC@grammalecte.net",
"strict_min_version": "54.0"
}
},
"author": "Olivier R.",
"homepage_url": "https://grammalecte.net",
"offline_enabled": true,
"description": "Correcteur grammatical pour le français.",
"icons": { "16": "img/logo-16.png",
"32": "img/logo-32.png",
"48": "img/logo-48.png",
"64": "img/logo-64.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
},
"background": {
"scripts": ["require.js", "grammalecte/helpers.js", "gce_worker.js"]
},
"web_accessible_resources": [
"beasts/frog.jpg",
"beasts/turtle.jpg",
"beasts/snake.jpg"
],
"permissions": [
"activeTab"
]
}
|
|
<
>
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
<
>
>
|
>
|
>
>
|
>
>
>
>
>
>
>
>
|
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
{
"manifest_version": 2,
"name": "Grammalecte [fr]",
"short_name": "Grammalecte [fr]",
"version": "0.6",
"applications": {
"gecko": {
"id": "French-GC@grammalecte.net",
"strict_min_version": "55.0"
}
},
"author": "Olivier R.",
"homepage_url": "https://grammalecte.net",
"description": "Correcteur grammatical pour le français.",
"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": true
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": [
"content_scripts/panels_content.css",
"content_scripts/tf_content.css",
"content_scripts/gc_content.css",
"content_scripts/lxg_content.css"
],
"js": [
"content_scripts/panels_content.js",
"grammalecte/fr/textformatter.js",
"content_scripts/tf_content.js",
"content_scripts/gc_content.js",
"content_scripts/lxg_content.js",
"content_scripts/content_modifier.js"
]
}
],
"web_accessible_resources": [
"grammalecte/_dictionaries/French.json",
"grammalecte/fr/conj_data.json",
"grammalecte/fr/mfsp_data.json",
"grammalecte/fr/phonet_data.json",
"grammalecte/fr/tests_data.json",
"img/logo-16.png"
],
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"chrome_settings_overrides": {
"search_provider": {
"name": "Grammalecte",
"search_url": "https://www.dicollecte.org/dictionary.php?prj=fr&lemma={searchTerms}",
"keyword": "disc",
"favicon_url": "https://www.dicollecte.org/favicon.ico"
}
}
}
|