ruffle/web/packages/extension/manifest.json

33 lines
873 B
JSON
Raw Normal View History

2019-08-20 04:29:53 +00:00
{
"manifest_version": 2,
"name": "Ruffle",
"description": "__MSG_description__",
"default_locale": "en",
2019-08-25 22:44:51 +00:00
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png",
"180": "icons/180.png"
},
"permissions": [ "storage" ],
2019-08-20 04:29:53 +00:00
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/lv0.js"],
2020-04-30 13:06:08 +00:00
"all_frames": true,
"run_at": "document_start"
2019-08-20 04:29:53 +00:00
}
],
"web_accessible_resources": ["dist/*"],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'unsafe-inline'",
"browser_action": {
"default_popup": "popup.html",
"browser_style": true
2019-11-01 22:21:50 +00:00
},
2020-05-28 17:19:41 +00:00
"options_ui": {
"page": "settings.html",
2020-05-28 17:19:41 +00:00
"open_in_tab": true
}
}