29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
"browser_style": true
},
"background": {
"scripts": [
"background.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"
],
|
>
>
>
>
>
>
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
"browser_style": true
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content_scripts/modify_page.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"
],
|