Added UI to support picking out sponsors and submitting

This commit is contained in:
Ajay Ramachandran
2019-07-08 23:43:06 -04:00
parent f81365414c
commit 2f32ead924
6 changed files with 162 additions and 9 deletions

View File

@@ -1,20 +1,25 @@
{
"name": "YTSponsorSkip",
"version": "1.0",
"description": "Skip youtube video sponsors",
"description": "Skip youtube video sponsors.",
"content_scripts": [
{
"matches": [
"https://*.youtube.com/*"
],
"js": [
"ContentScript.js"
"contentScript.js"
]
}
],
"permissions": [
"tabs"
"tabs",
"storage"
],
"browser_action": {
"default_title": "SponsorBlock",
"default_popup": "popup.html"
},
"background": {
"scripts":["background.js"]
},