-
Notifications
You must be signed in to change notification settings - Fork 114
/
manifest.json
101 lines (101 loc) · 2.74 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDCvpsh4qvVEOcUZPeucJJ5VASn8fIOGsoQIXnIewzRcqi3Nwj/4WttouI8Fp2OlNxjH6rkaFOSaUPv5n0j20M7clmTjFPmJtbdKKBdVnE5g1jRpkzwMPMV8fpP5IyyTy0hSkK1FAWuxnlBmOMLSAeqCsVH4cYO9s2ilFMNMEG04wIDAQAB",
"default_locale":"en",
"name": "__MSG_extName__",
"short_name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"author": "Kyle Graehl",
"version": "2.4.12",
"manifest_version": 2,
"offline_enabled": true,
"minimum_chrome_version": "33",
"file_handlers": {
"any": {
"types": [
"application/x-bittorrent"
],
"extensions": [
"torrent"
]
}
},
"sockets": {
"udp": {
"send": [""],
"bind": [""],
"multicastMembership": ""
},
"tcp": {
"connect": [""]
},
"tcpServer": {
"listen": [""]
}
},
"permissions": [
{"fileSystem":["write","directory","retainEntries"]},
"contextMenus",
"alarms",
"storage",
"unlimitedStorage",
"system.storage",
"system.cpu",
"system.memory",
"system.network",
"idle",
"power",
"notifications",
"http://*/",
"https://*/",
"identity",
"browser",
"alwaysOnTopWindows",
"gcm",
{"mediaGalleries":["read"]}
],
"optional_permissions": [
"background",
"identity.email"
],
"oauth2": {
"client_id": "432934632994-20rclui1m8od0p2g09vfbrdnk93gbraa.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile",
"https://www.googleapis.com/auth/drive.appfolder",
"https://www.googleapis.com/auth/drive.file"
]
},
"app": {
"background": {
"scripts": ["conf.js", "common.js", "js/log-full.js", "notifications.js", "js/options.js", "session.js", "background.js"]
}
},
"url_handlers": {
"open_jstorrent": {
"matches": [
"*://*.jstorrent.com/open*",
"*://jstorrent.com/open*"
],
"title": "Open in __MSG_extName__"
}
},
"externally_connectable": {
"ids": [ "bnceafpojmnimbnhamaeedgomdcgnbjk" ],
"matches": [
"*://*.jstorrent.com/*",
"*://jstorrent.com/*"
]
},
"icons": {
"16": "images/js-16.png",
"19": "images/js-19.png",
"32": "images/js-32.png",
"48": "images/js-48.png",
"96": "images/js-96.png",
"128": "images/js-128.png",
"256": "images/js-256.png",
"512": "images/js-512.png"
}
}