SponsorBlock/manifest.json
Ajay Ramachandran 42f1d05fe8 Added background color to notice and font.
Also improved the notice's buttons a little.
2019-07-10 15:11:55 -04:00

33 lines
600 B
JSON

{
"name": "YTSponsorSkip",
"version": "1.0",
"description": "Skip youtube video sponsors.",
"content_scripts": [
{
"matches": [
"https://*.youtube.com/*"
],
"js": [
"content-config.js",
"content.js"
],
"css": [
"content.css",
"Source+Sans+Pro.css"
]
}
],
"permissions": [
"tabs",
"storage",
"notifications"
],
"browser_action": {
"default_title": "SponsorBlock",
"default_popup": "popup.html"
},
"background": {
"scripts":["background.js"]
},
"manifest_version": 2
}