-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmanifest.json
35 lines (35 loc) · 999 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
32
33
34
35
{
"manifest_version": 3,
"name": "Corporate Earnings",
"version": "3.2.8",
"description": "Displays earnings and fundamentals in the easy to analyze format",
"icons": {
"128": "src/images/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://seekingalpha.com/symbol/*/earnings",
"https://www.zacks.com/stock/research/*/earnings-calendar"
],
"js": [
"src/js/constants.js",
"src/js/helpers.js",
"src/js/core.js"
],
"run_at": "document_end"
}
],
"action": {
"default_icon": "src/images/icon.png",
"default_popup": "src/html/popup.html"
},
"options_ui": {
"page": "src/html/options.html"
},
"background": {
"service_worker": "src/js/background.js"
},
"permissions": ["storage", "tabs"],
"host_permissions": ["https://*.finviz.com/*"]
}