-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
64 lines (63 loc) · 1.61 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
{
"manifest_version": 3,
"name": "FilterForces",
"version": "0.1.0",
"description": "Extension used to record the time taken to solve a problem ",
"permissions": [
"activeTab",
"tabs",
"storage",
"cookies",
"webRequest"
],
"host_permissions": [
"https://filterforces.herokuapp.com/*"
],
"web_accessible_resources": [
{
"resources": [
"/Assets/pause.png",
"/Assets/play-button-arrowhead.png"
],
"matches": [
"https://codeforces.com/*"
]
}
],
"icons": {
"48": "/Assets/Logo.png",
"128": "/Assets/Logo128.png",
"16": "/Assets/Logo16.png"
},
"content_scripts": [
{
"matches": [
"https://codeforces.com/problemset/problem/*"
],
"js": [
"Timer.js"
],
"css": [
"/styles/styles.css"
]
},
{
"matches": [
"https://codeforces.com/problemset/status?",
"https://codeforces.com/problemset/status?my=on",
"https://codeforces.com/problemset/status?friends=on",
"https://codeforces.com/contest/*/submit",
"https://codeforces.com/contest/*/my"
],
"js": [
"PostMan.js"
],
"css": [
"/styles/containerTimer.css"
]
}
],
"background": {
"service_worker": "background.js"
}
}