-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 933 Bytes
/
manifest.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
{
"manifest_version": 2,
"name": "Geração de arquivos XLS ou OFX",
"description": "Essa extensão permite a exportação de faturas ou extrato do Nubank e Banco do Nordeste.",
"version": "1.0",
"page_action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab",
"tabs",
"declarativeContent",
"downloads"
],
"content_scripts": [{
"matches": ["https://app.nubank.com.br/*"],
"js": ["content_nubank.js", "jquery-3.3.1.min.js", "xlsx.full.min.js"]
}, {
"matches": ["https://nel.bnb.gov.br/InformacoesCartaoCredito/*"],
"js": ["content_nel_visaplatinum.js", "jquery-3.3.1.min.js", "xlsx.full.min.js"],
"all_frames": true
}, {
"matches": ["https://nel.bnb.gov.br/ext_cco_01*"],
"js": ["content_nel_extrato.js", "jquery-3.3.1.min.js", "xlsx.full.min.js"],
"all_frames": true
}],
"background": {
"scripts": ["bg.js"],
"persistent": false
}
}