1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
+
+
|
{
"manifest_version": 2,
"name": "Grammalecte [fr]",
"short_name": "Grammalecte [fr]",
"version": "0.6.0",
"applications": {
"gecko": {
"id": "French-GC@grammalecte.net",
"strict_min_version": "57.0"
}
},
"minimum_chrome_version": "61",
"author": "Olivier R.",
"homepage_url": "https://grammalecte.net",
"description": "Correcteur grammatical pour le français.",
"default_locale": "fr",
"icons": { "16": "img/logo-16.png",
|
︙ | | |
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
+
|
"default_popup": "panel/main.html",
"default_title": "Grammalecte [fr]",
"browser_style": false
},
"background": {
"scripts": [
"grammalecte/helpers.js",
"background.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
|
︙ | | |
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
-
+
-
+
|
"run_at": "document_idle"
}
],
"commands": {
"conjugueur_tab": {
"suggested_key": {
"default": "Ctrl+Shift+F6"
"default": "Ctrl+Shift+6"
},
"description": "Ouvre le conjugueur dans un onglet"
},
"conjugueur_window": {
"suggested_key": {
"default": "Ctrl+Shift+F7"
"default": "Ctrl+Shift+7"
},
"description": "Ouvre le conjugueur dans une fenêtre"
}
},
"web_accessible_resources": [
"grammalecte/_dictionaries/French.json",
|
︙ | | |
119
120
121
122
123
124
125
126
127
128
129
130
|
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
-
-
+
+
+
+
|
"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"
"keyword": "gram",
"favicon_url": "https://www.dicollecte.org/favicon.ico",
"encoding": "UTF-8",
"is_default": false
}
}
}
|