-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 802 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 802 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
30
31
32
33
{
"browser_action": {
"default_popup": "popup.html",
"browser_style": true
},
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"js": [ "dist/lv0.js" ],
"all_frames": true,
"run_at": "document_start"
}
],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'unsafe-inline'",
"default_locale": "en",
"description": "__MSG_description__",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png",
"180": "icons/180.png"
},
"manifest_version": 2,
"name": "Ruffle",
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"permissions": [ "storage" ],
"version": "0.1.0",
"web_accessible_resources": [ "dist/*" ]
}