-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.input.json
51 lines (51 loc) · 1.35 KB
/
manifest.input.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
{
"common": {
"name": "AoC Time Logger",
"version": "3.0.0",
"description": "Logs time when user opens the task",
"content_scripts": [{
"matches": ["https://adventofcode.com/*"],
"js": ["content.js"]
}],
"icons": {
"16": "images/aoc16.png",
"32": "images/aoc32.png",
"48": "images/aoc48.png",
"128": "images/aoc128.png"
}
},
"chrome": {
"manifest_version": 3,
"permissions": [
"storage",
"activeTab",
"tabs"
],
"host_permissions": [
"https://adventofcode.com/",
"https://7b79gj2si4.execute-api.eu-central-1.amazonaws.com/"
],
"background": {
"service_worker": "background.js"
}
},
"firefox": {
"manifest_version": 2,
"permissions": [
"storage",
"activeTab",
"tabs",
"https://adventofcode.com/",
"https://7b79gj2si4.execute-api.eu-central-1.amazonaws.com/"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_specific_settings": {
"gecko": {
"id": "{aaf1b8ea-aca7-4fbe-aa96-77ecbfa4854c}"
}
}
}
}