-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (47 loc) · 951 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
44
45
46
47
{
"manifest_version": 3,
"name": "Trektor",
"description": "Browser-Extension zum automatischen Anlegen von Toggl tracking tasks",
"version": "0.0.15",
"icons": {
"64": "icons/64.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "110.0"
}
},
"content_scripts": [
{
"matches": [
"https://trello.com/*"
],
"js": [
"scripts/trektor.js",
"scripts/content_script.js"
],
"css": [
"content_style.css"
]
}
],
"background": {
"service_worker": "scripts/chromium.js",
"scripts": [
"scripts/trektor.js",
"scripts/background.js",
"scripts/firefox.js"
]
},
"permissions": [
"storage"
],
"host_permissions": [
"https://api.trello.com/*",
"https://api.track.toggl.com/*"
],
"options_ui": {
"page": "options/index.html"
}
}