-
Notifications
You must be signed in to change notification settings - Fork 56
/
manifest.json
33 lines (33 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
{
"name": "Flutter Everywhere",
"version": "1.0",
"description": "Flutter on Google Chrome Extensions",
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_popup": "build/web/index.html",
"default_icon": {
"16": "assets/images/icon/get_started16.png",
"32": "assets/images/icon/get_started32.png",
"48": "assets/images/icon/get_started48.png",
"128": "assets/images/icon/get_started128.png"
}
},
"icons": {
"16": "assets/images/icon/get_started16.png",
"32": "assets/images/icon/get_started32.png",
"48": "assets/images/icon/get_started48.png",
"128": "assets/images/icon/get_started128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2
}