ruffle/web/packages/extension/manifest.json5

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-08-20 04:29:53 +00:00
{
"manifest_version": 2,
"name": "Ruffle",
"version": null, // Filled by Webpack.
"default_locale": "en",
2021-02-26 14:27:01 +00:00
"description": "__MSG_description__",
"homepage_url": "https://ruffle.rs/",
"browser_action": {
"default_popup": "popup.html",
"browser_style": true,
2019-08-25 22:44:51 +00:00
},
2021-03-01 21:12:49 +00:00
"background": {
"scripts": ["dist/background.js"],
"persistent": true,
2021-03-01 21:12:49 +00:00
},
2019-08-20 04:29:53 +00:00
"content_scripts": [
{
"matches": ["<all_urls>"],
2021-04-15 19:30:24 +00:00
"js": ["dist/content.js"],
2020-04-30 13:06:08 +00:00
"all_frames": true,
"run_at": "document_start",
2019-08-20 04:29:53 +00:00
}
],
2021-03-01 21:12:49 +00:00
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'unsafe-inline'; connect-src *;",
2021-02-26 14:27:01 +00:00
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"128": "images/icon128.png",
"180": "images/icon180.png",
2019-11-01 22:21:50 +00:00
},
2020-05-28 17:19:41 +00:00
"options_ui": {
2021-02-14 11:30:16 +00:00
"page": "options.html",
"open_in_tab": true,
2021-02-26 14:27:01 +00:00
},
2021-03-01 21:12:49 +00:00
"permissions": [
"storage",
"<all_urls>",
"webRequest",
"webRequestBlocking",
2021-03-01 21:12:49 +00:00
],
"web_accessible_resources": ["*"],
}