Allowed all logging to be viewed by the interface.

It is just much easier this way.
This commit is contained in:
Markil3
2021-10-09 15:52:34 -06:00
parent 72ccfbc444
commit a92d686ddb
17 changed files with 1087 additions and 138 deletions

View File

@@ -19,13 +19,13 @@
},
"background": {
"scripts": ["background.js"]
"scripts": ["logger.js", "defs/songs.js", "background.js"]
},
"content_scripts": [
{
"matches": ["*://*.youtube.com/watch?v=*"],
"js": ["foreground.js", "youtube.js"]
"js": ["jquery.js", "logger.js", "defs/songs.js", "foreground.js", "youtube.js"]
}
],
@@ -33,5 +33,5 @@
"default_icon": "icon.svg"
},
"permissions": ["nativeMessaging"]
"permissions": ["nativeMessaging", "tabs"]
}