-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.hjson
42 lines (36 loc) · 986 Bytes
/
manifest.hjson
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
{
name: Codeforces++
description: Codeforces extension pack
version: will be replaced by the package.json version when bundled
manifest_version: 2
permissions: [
storage
// tabs
*://codeforces.com/*
http://fonts.googleapis.com/*
https://fonts.googleapis.com/*
]
content_scripts: [
{
matches: [ "*://codeforces.com/*" ]
js: [ "browser-polyfill.min.js", "contentScript.js" ]
css: [ "common.css" ]
run_at: document_start
}
]
web_accessible_resources: ["*.js"]
background: {
persistent: false
scripts: [ "browser-polyfill.min.js", "background.js" ]
}
browser_action: {
default_popup: popup.html
default_title: Codeforces++
}
icons: {
16: icons/16x16.png
32: icons/32x32.png
48: icons/48x48.png
128: icons/128x128.png
}
}