-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
87 lines (87 loc) · 1.97 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "4.1.1.3",
"name": "required Time Tracker",
"description": "Track time from Chrome and within popular project management tools.",
"author": "required gmbh",
"manifest_version": 3,
"icons": {
"16": "images/[email protected]",
"48": "images/[email protected]",
"128": "images/[email protected]"
},
"action": {
"default_icon": {
"19": "images/[email protected]",
"38": "images/[email protected]"
},
"default_title": "Start a Harvest timer",
"default_popup": "popup.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+H"
}
}
},
"background": {
"service_worker": "service-worker.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"permissions": [
"notifications",
"webNavigation"
],
"content_scripts": [
{
"matches": [ "https://basecamp.com/*" ],
"js": [
"js/profiles/basecamp2.js",
"js/platform.js"
]
},
{
"matches": [ "https://3.basecamp.com/*" ],
"js": [
"js/profiles/basecamp3.js",
"js/platform.js"
],
"css": [ "css/basecamp3.css" ]
},
{
"matches": [ "https://trello.com/*" ],
"js": [
"js/profiles/trello.js",
"js/platform.js"
],
"css": [ "css/trello.css" ]
},
{
"matches": [ "https://github.com/*" ],
"js": [
"js/profiles/github.js",
"js/platform.js"
],
"css": [ "css/github.css" ]
},
{
"matches": [ "https://app.asana.com/*" ],
"js": [
"js/profiles/asana.js",
"js/platform.js"
],
"css": [ "css/asana.css" ]
},
{
"matches": [ "https://secure.helpscout.net/*" ],
"js": [
"js/profiles/helpscout.js",
"js/platform.js"
],
"css": [ "css/helpscout.css" ]
}
]
}