-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest-firefox.json
60 lines (59 loc) · 1.7 KB
/
manifest-firefox.json
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
{
"manifest_version": 2,
"name": "PES Stats Converter Copy - By PES Indie Team",
"version": "1.3.2",
"description": "Creates a floating button at the bottom right corner of the website that will allow you to convert FIFA, FM and Efootball stats into old-gen PES stats.",
"permissions": ["activeTab", "storage"],
"content_scripts": [
{
"matches": [
"*://*.sofifa.com/player/*",
"*://*.fminside.net/players/*",
"*://*.pesmaster.com/*/efootball-2022/player/*"
],
"js": [
"js/global_functions.js",
"js/pes_player.js",
"js/pes21_player.js",
"js/pes13_player.js",
"js/nationalities.js",
"js/pes21_stats_table.js"
],
"run_at": "document_idle"
},
{
"matches": ["*://*.sofifa.com/player/*"],
"js": ["js/sofifa_player.js"],
"run_at": "document_idle"
},
{
"matches": ["*://*.fminside.net/players/*"],
"js": ["js/fminside_player.js"],
"run_at": "document_idle"
},
{
"matches": ["*://*.pesmaster.com/*/efootball-2022/player/*"],
"js": ["js/pesmaster_player.js"],
"run_at": "document_idle"
}
],
"icons": {
"16": "pes_indie_16.png",
"48": "pes_indie_48.png",
"128": "pes_indie_128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "pes_indie_16.png",
"48": "pes_indie_48.png",
"128": "pes_indie_128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "pesstatscopy@pesindie.com",
"strict_min_version": "79.0"
}
}
}