forked from huntbao/phosphorus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
34 lines (34 loc) · 917 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
{
"background": {
"scripts": [
"js/background.js"
]
},
"browser_action": {
"default_icon": "images/icons/19x19.png",
"default_title": "Phosphorus - A tool like Postman"
},
"icons": {
"16": "images/icons/16x16.png",
"19": "images/icons/19x19.png",
"32": "images/icons/32x32.png",
"48": "images/icons/48x48.png",
"128": "images/icons/128x128.png"
},
"description": "A tool like Postman",
"manifest_version": 2,
"name": "Phosphorus",
"short_name": "Phosphorus - A tool like Postman",
"minimum_chrome_version": "28",
"permissions": [
"http://*/*",
"https://*/*",
"unlimitedStorage",
"storage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:7070/webpack-dev-server.js http://localhost:7070/assets/index.js;object-src 'self'",
"web_accessible_resources": [
"index.html"
],
"version": "1.0.2"
}