-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (39 loc) · 1016 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": "rrIssues",
"version": "1.0",
"description": "The first extension that I made.",
"options_page": "options.html",
"background": {
"page": "background.html"
},
"permissions": [
"http://*.github.com/",
"https://*.github.com/",
"notifications"
],
"web_accessible_resources": [
"images/trafficlight_green.png",
"images/trafficlight_red.png",
"images/trafficlight_yellow.png",
"images/trafficlight_blue.png",
"images/exclamation_blue.png",
"images/exclamation_yellow.png",
"images/exclamation_green.png",
"images/exclamation_red.png",
"images/calendar_blue.png",
"images/calendar_green.png",
"images/calendar_yellow.png",
"images/calendar_red.png",
"images/tag_blue.png",
"images/tag_green.png",
"images/tag_yellow.png",
"images/tag_red.png"
],
"content_scripts": [
{
"matches": ["https://github.com/robots.txt*"],
"js": ["oauth2/oauth2_inject.js"],
"run_at": "document_start"
}
]
}