-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 991 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
36
37
38
39
40
41
42
43
{
"manifest_version": 2,
"name": "Esti'mate",
"author": "Antistatique",
"version": "1.6.2",
"description": "Your Harvest estimate's best friend",
"homepage_url": "https://github.com/antistatique/esti-mate/",
"permissions": [
"*://api.airtable.com/*",
"storage"
],
"options_ui": {
"page": "src/settings/index.html"
},
"background": {
"scripts": [
"lib/browser-polyfill.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.harvestapp.com/estimates/*/edit",
"*://*.harvestapp.com/estimates/*/duplicate",
"*://*.harvestapp.com/estimates/new",
"*://*.harvestapp.com/estimates/*"
],
"js": [
"lib/browser-polyfill.js",
"lib/rxjs-6.6.7.umd.min.js",
"src/lib/summary.js",
"src/lib/airtable.js",
"src/lib/pm.js",
"src/App.js",
"src/index.js"
]
}
],
"icons": {
"48": "assets/icon.png",
"96": "assets/[email protected]"
}
}