-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 796 Bytes
/
manifest.json
File metadata and controls
39 lines (39 loc) · 796 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
34
35
36
37
38
39
{
"name": "GitHub Notes",
"manifest_version": 2,
"version": "1.0.2",
"description": "a chrome extension that can give github repos your own notes",
"icons":
{
"16": "icons/icon_16.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"browser_action": {
"default_title": "",
"default_icon": {
"19": "icons/icon_19.png",
"38": "icons/icon_38.png"
}
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": ["*://github.com/*/*"],
"js": ["output/repoDetail.js"],
"css": [],
"run_at": "document_end"
},
{
"matches": ["*://github.com/*"],
"js": [
"lib/list.min.js",
"output/stars.js"
],
"css": [],
"run_at": "document_end"
}
]
}