Files
UniversalMusicPlayer/add-on/manifest.json
Markil3 66ce116da4 Added better logging and browser support.
We still need to work on the Linux browser a bit.
2021-07-26 20:27:43 -07:00

30 lines
621 B
JSON

{
"description": "An add-on to link the Universal Music Player to compatible web music players.",
"manifest_version": 2,
"name": "Universal Music Addon",
"version": "0.1",
"icons": {
"16": "icon.svg",
"32": "icon.svg",
"64": "icon.svg",
"128": "icon.svg",
"256": "icon.svg",
"512": "icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "universalmusic@regis.edu",
"strict_min_version": "55.0"
}
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icon.svg"
},
"permissions": ["nativeMessaging"]
}