-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 826 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 826 Bytes
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
{
"manifest_version": 2,
"name": "Personal Note",
"description": "its simple to save note.",
"version": "1.0",
"icons": {
"64": "icons/icon64x64.png"
},
"browser_action": {
"default_icon": "icons/icon64x64.png",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"permissions": [
"identity",
"storage"
],
"content_security_policy":"script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
"oauth2": {
"client_id": "client_id.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"key":"extension public key(its required only for google chrome browser in local pc)"
}