Files
UniversalMusicPlayer/add-on/manifest.json
Markil3 ede9132279 Adds the ability to play youtube videos.
It still needs a bit of work, but playing and pausing are operational.
2021-08-16 22:42:44 -06:00

37 lines
756 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"]
},
"content_scripts": [
{
"matches": ["*://*.youtube.com/watch?v=*"],
"js": ["foreground.js", "youtube.js"]
}
],
"browser_action": {
"default_icon": "icon.svg"
},
"permissions": ["nativeMessaging"]
}