-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
41 lines (41 loc) · 945 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
{
"name": "__MSG_ext_name__",
"version": "0.2",
"manifest_version": 2,
"default_locale": "en",
"description": "__MSG_ext_description__",
"icons": {
"16": "drive16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/injectDriveUploader.js"]
},
{
"matches": ["https://plus.martinmatysiak.de/chrometodrive/oauth_redirect*"],
"js": ["oauth2/oauth2_inject.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"oauth2/oauth2.js",
"js/driveclient.js",
"js/background.js"
]
},
"permissions": [
"contextMenus",
"notifications",
"tabs",
"https://accounts.google.com/o/oauth2/token",
"https://plus.martinmatysiak.de/chrometodrive/oauth_redirect",
"https://www.googleapis.com/"
],
"web_accessible_resources": [
"drive32.png"
]
}