-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
69 lines (63 loc) · 1.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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name":"Postman",
"short_name": "Postman",
"version":"4.10.7",
"minimum_chrome_version": "28",
"icons":{
"16":"icon_16.png",
"32":"icon_32.png",
"48":"icon_48.png",
"64":"icon_64.png",
"128":"icon_128.png"
},
"app":{
"background": {
"scripts": ["background.js"]
}
},
"oauth2": {
"client_id": "986289894049-gfdof5fk4mcv0igaldjr8g8976d3rgoi.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"sandbox": {
"pages": ["html/tester_sandbox.html", "snippet_sandbox.html"],
"content_security_policy": "sandbox allow-scripts allow-popups; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://ssl.google-analytics.com/ga.js;"
},
"externally_connectable": {
"ids": ["*"],
"matches": ["*://*.getpostman.com/*"]
},
"default_locale":"en",
"permissions":[
"webview",
"system.display",
"http://*/*",
"https://*/*",
"contextMenus",
"unlimitedStorage",
"storage",
"fileSystem",
"fileSystem.write",
"notifications",
"identity",
{"socket": [
"tcp-connect:*:*",
"tcp-listen:*:*"
]}
],
"manifest_version": 2,
"offline_enabled":true,
"url_handlers": {
"postman_collection": {
"title": "Postman Collection",
"matches": [
"*://www.getpostman.com/collections/*",
"*://www.getpostman.com/api/collections/*"
]
}
}
}