@avi12: this error can be ignored?
Unrecognized manifest key 'browser_specific_settings'.
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": "Twitch Channel Points Bonus Collector",
"short_name": "Twitch CP",
"description": "Auto-clicks the Channel Points bonus button when it appears.",
"version": "1.1.5",
"icons": {
"16": "images/thin_icon-16.png",
"19": "images/thin_icon-19.png",
"24": "images/thin_icon-24.png",
"32": "images/thin_icon-32.png",
"38": "images/thin_icon-38.png",
"48": "images/thin_icon-48.png",
"64": "images/thin_icon-64.png",
"96": "images/thin_icon-96.png",
"128": "images/thin_icon-128.png"
},
"author": "avi12",
"developer": {
"name": "avi12",
"url": "https://avi12.com/"
},
"content_scripts": [
{
"matches": [
"https://www.twitch.tv/*"
],
"js": [
"build/content-script-twitch.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "twitch-cp-bonus-collector@avi12.com"
}
},
"applications": {
"gecko": {
"id": "twitch-cp-bonus-collector@avi12.com"
}
}
}
```