-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
39 lines (39 loc) · 950 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
{
"name": "CodeHub",
"description": "Automatically pushes your Codewars submissions to GitHub",
"homepage_url": "https://github.com/FebinBellamy/CodeHub",
"version": "1.0.0",
"author": "Febin Bellamy",
"action": {
"default_icon": {
"16": "assets/codehubIcon.png",
"24": "assets/codehubIcon.png",
"32": "assets/codehubIcon.png"
},
"default_title": "CodeHub",
"default_popup": "popup.html"
},
"icons": {
"16": "assets/codehubIcon16x16.png",
"48": "assets/codehubIcon48x48.png",
"128": "assets/codehubIcon128x128.png"
},
"background": {
"service_worker": "scripts/background.js",
"type": "module",
"persistent": false
},
"permissions": [
"storage",
"tabs",
"scripting",
"webNavigation",
"activeTab"
],
"host_permissions": [
"https://www.codewars.com/*",
"https://github.com/*",
"https://api.github.com/*"
],
"manifest_version": 3
}