-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
57 lines (50 loc) · 1.2 KB
/
manifest.json
File metadata and controls
57 lines (50 loc) · 1.2 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
{
"manifest_version": 3,
"name": "Lucky Cat",
"version": "1.4.1",
"description": "Lucky Cat adds revenue forecasting to your RevenueCat dashboard.",
"default_locale": "en",
"permissions": [
"storage",
"alarms"
],
"host_permissions": [
"https://app.revenuecat.com/*",
"https://api.searchads.apple.com/*",
"https://appleid.apple.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://app.revenuecat.com/*"],
"js": [
"utils/format.js",
"utils/date-utils.js",
"utils/storage.js",
"content/dom-parser.js",
"content/forecasting.js",
"content/ui-injector.js",
"content/asa-integration.js",
"content/content.js"
],
"css": ["styles/styles.css"],
"run_at": "document_idle"
}
],
"action": {
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_title": "Toggle Lucky Cat Forecast Panel"
},
"options_page": "options/options.html",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}