-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
50 lines (50 loc) · 992 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
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 2,
"name": "Hive++",
"description": "This extension adds a summary of how many exercises on hive one needs to complete",
"version": "2.0.0",
"icons": {
"16": "hive++_logo16.png",
"48": "hive++_logo48.png",
"128": "hive++_logo.png"
},
"browser_action": {
"default_icon": "hive.png",
"default_title": "Open Hive in new tab"
},
"content_scripts": [
{
"matches": [
"*://hive.itcapp.com/"
],
"css": [
"table.css"
],
"js": [
"insert_stuff.js"
],
"run_at": "document_end"
},
{
"matches": [
"*://hive.itcapp.com/*"
],
"js": [
"design_fixes.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"storage"
]
}