playVideoOnDreambox as WebExtension
[playVideoOnDreambox.git] / src / manifest.json
1 {
2     "manifest_version": 2,
3     "name": "playVideoOnDreambox",
4     "version": "0.6.0",
5     "description": "Play videos from websites on your Dreambox satellite receiver",
6     "homepage_url": "https://cweiske.de/playVideoOnDreambox.htm#firefox",
7     "author": "Christian Weiske",
8     "icons": {
9         "32": "icon.png"
10     },
11     "permissions": [
12         "activeTab",
13         "menus",
14         "notifications",
15         "storage"
16     ],
17     "browser_action": {
18         "default_icon": "icon.png",
19         "default_title": "Play video on Dreambox"
20     },
21     "background": {
22         "scripts": ["background-script.js"]
23     },
24     "options_ui": {
25         "page": "options.html",
26         "browser_style": true,
27         "chrome_style": true
28     },
29     "browser_specific_settings": {
30         "gecko": {
31             "id": "@playvideoondreambox"
32         }
33     }
34 }