-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
72 lines (72 loc) · 1.8 KB
/
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
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
72
{
"manifest_version": 3,
"name": "Tesouro Direto - Preço teórico",
"version": "3.1.2",
"description": "Exibe o preço teórico de um investimento no Tesouro Direto",
"icons": {
"16": "assets/td-icon-16.png",
"32": "assets/td-icon-32.png",
"48": "assets/td-icon-48.png",
"64": "assets/td-icon-64.png",
"128": "assets/td-icon-128.png"
},
"developer": {
"name": "Elton Hoffmann",
"url": "https://github.com/eltonjr"
},
"content_scripts": [
{
"matches": [
"*://portalinvestidor.tesourodireto.com.br/MeusInvestimentos/Titulo/*",
"http://localhost/MeusInvestimentos/Titulo/*"
],
"js": [
"src/polyfill.js",
"src/config.js",
"src/logger.js",
"src/cache.js",
"src/fetcher.js",
"src/dom_utils.js",
"src/dom_title.js",
"src/scrapper_utils.js",
"src/scrapper_title.js",
"src/page_title.js"
],
"css": []
},
{
"matches": [
"*://portalinvestidor.tesourodireto.com.br/MeusInvestimentos",
"*://portalinvestidor.tesourodireto.com.br/Acompanhar",
"http://localhost/Acompanhar",
"http://localhost/MeusInvestimentos"
],
"js": [
"src/polyfill.js",
"src/config.js",
"src/logger.js",
"src/cache.js",
"src/fetcher.js",
"src/dom_utils.js",
"src/dom_main.js",
"src/scrapper_utils.js",
"src/scrapper_title.js",
"src/scrapper_main.js",
"src/page_main.js"
],
"css": []
}
],
"options_ui": {
"page": "src/options/options.html"
},
"devtools_page": "src/devtools/devtools.html",
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "{f9c2e98c-0e7b-4732-919f-f1bc3116e836}"
}
}
}