forked from cse112-sp20/CalamariCrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
29 lines (29 loc) · 1.13 KB
/
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
{
"manifest_version": 2,
"name": "Velocity Raptor",
"description": "Track your developer velocity with velocity raptor!",
"version": "1.0",
"permissions": [
"https://github.com/*",
"https://api.github.com/*",
"tabs",
"storage",
"identity"
],
"content_scripts":[{
"matches":["http://localhost:3000/oauth/register"],
"js":["/root/src/js/user_settings.js"],
"run_at":"document_start"
}],
"web_accessible_resources": [
"root/src/libs/*"
],
"browser_action": {
"default_icon": "./root/media/icons/raptorIcon.png",
"default_popup": "root/html/setup/auth.html"
},
"background": {
"scripts": ["./root/src/js/main.js"]
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApUSJgJzNHuZ2wornwcAvI0agd8DS7As4hRys1vAbAJlAtbsvVcnVEGvqqz98WugpYZMJBtp23AqiO03eAqARAeZHrzFz/b3pmJEpVQnGNV43r6TF4PC4hfiawuhkHYI7TEIy5GkmsEZxXdtu1iqlSmSyTVu3nlP0X0CffdEQg8F7+191k57OCo15paVdXvVoCXVElOilC9AJ4AhGo+z3WOwFq3wnzJ+yJsjq5My2hLNJFqIZ/+t5dereDluK2OjJh0GjmARGiCafrlACuZ1aY1a9Xi/i2KmYRizb7nTpOGqie0CVUzHkcySNEXdK7SeKaS1opNc5LGdVMcvfY3gyEwIDAQAB"
}