ruffle/web/extension/build/manifest.json

22 lines
517 B
JSON
Raw Normal View History

2019-08-20 04:29:53 +00:00
{
"manifest_version": 2,
"name": "Ruffle",
"version": "0.1.0",
"description": "Puts Flash back on the web where it belongs.",
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"
},
2019-08-20 04:29:53 +00:00
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["js/lv0.js"],
"all_frames": true
2019-08-20 04:29:53 +00:00
}
],
"web_accessible_resources": ["dist/*"]
}