forked from moth1995/pes_stats_converter_copy_addon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
71 lines (70 loc) · 1.86 KB
/
manifest.json
File metadata and controls
71 lines (70 loc) · 1.86 KB
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
{
"manifest_version": 3,
"name": "PES Stats Converter Copy - By PES Indie Team",
"version": "1.3.1",
"description": "Button that will allow you to convert FIFA, FM and Efootball stats into old-gen PES stats.",
"permissions": ["storage"],
"host_permissions" : [
"https://*.sofifa.com/*",
"https://*.fminside.net/*",
"https://*.pesmaster.com/*"
],
"content_scripts": [
{
"matches": [
"*://*.sofifa.com/player/*",
"*://*.fminside.net/players/*",
"*://*.pesmaster.com/*/efootball-2022/player/*"
],
"run_at": "document_idle",
"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"
]
},
{
"matches": [
"*://*.sofifa.com/player/*"
],
"run_at": "document_idle",
"js": [
"js/sofifa_player.js"
]
},
{
"matches": [
"*://*.fminside.net/players/*"
],
"run_at": "document_idle",
"js": [
"js/fminside_player.js"
]
},
{
"matches": [
"*://*.pesmaster.com/*/efootball-2022/player/*"
],
"run_at": "document_idle",
"js": [
"js/pesmaster_player.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "pes_indie_16.png",
"48": "pes_indie_48.png",
"128": "pes_indie_128.png"
}
},
"icons": {
"16": "pes_indie_16.png",
"48": "pes_indie_48.png",
"128": "pes_indie_128.png"
}
}