-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (33 loc) · 930 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
{
"manifest_version": 2,
"name": "codeconscious",
"description": "This extension charges someone using Venmo if they're to be blamed for causing code to be reverted.",
"version": "1.0",
"content_scripts":[
{
"matches": ["https://github.com/*/*/blame/*"],
"js": ["jquery.js", "underscore.js", "showbutton.js"],
"css": ["blame.css"]
},
{
"matches": ["https://github.com/robots.txt*"],
"js": ["oauth2/oauth2_inject.js"],
"run_at": "document_start"
},
{
"matches": ["https://venmo.com/robots.txt*"],
"js": ["oauth2/oauth2_inject.js"],
"run_at": "document_start"
}
],
"permissions": [
"storage", "tabs",
"https://github.com/login/oauth/access_token",
"https://api.venmo.com/oauth/access_token"
],
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_popup_js": "popup.js"
}
}