-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 904 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 904 Bytes
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
{
"name" : "CodeHub",
"version" : "1.0",
"description" : "extension api to automatically commit your code from codechef to github repo using manifest version 3",
"permissions" : ["storage","tabs","unlimitedStorage"],
"host_permissions" : ["https://github.com/*","https://api.github.com/*","https://www.codechef.com/submit/*"],
"background" : {
"service_worker" : "background.js"
},
"content_scripts" : [
{
"matches" : ["https://*.codechef.com/submit/*"],
"js" : ["codechef.js"]
}
],
"manifest_version" : 3,
"action" : {
"default_popup" : "popup.html",
"default_icon":{
"16" : "/thumbnail.png",
"32" : "/thumbnail.png",
"48" : "/thumbnail.png",
"128" : "/thumbnail.png"
},
"default_title" : "CodeHub"
},
"icons":{
"16" : "/thumbnail.png",
"32" : "/thumbnail.png",
"48" : "/thumbnail.png",
"128" : "/thumbnail.png"
}
}