Improved support for Linux

This commit is contained in:
Markil3
2021-09-04 15:11:36 -06:00
parent 5e4ae23978
commit c24d6c2367
11 changed files with 297 additions and 174 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 114 KiB

View File

@@ -0,0 +1,37 @@
{
"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"]
}