SponsorBlock/manifest.json

34 lines
600 B
JSON
Raw Normal View History

{
"name": "YTSponsorSkip",
"version": "1.0",
"description": "Skip youtube video sponsors.",
"content_scripts": [
{
"matches": [
"https://*.youtube.com/*"
],
"js": [
"content-config.js",
2019-07-09 20:50:19 +02:00
"content.js"
2019-07-10 20:43:14 +02:00
],
"css": [
"content.css",
"Source+Sans+Pro.css"
]
}
],
2019-01-15 19:23:50 +01:00
"permissions": [
"tabs",
"storage",
"notifications"
2019-01-15 19:23:50 +01:00
],
"browser_action": {
"default_title": "SponsorBlock",
"default_popup": "popup.html"
},
2019-01-15 19:23:50 +01:00
"background": {
"scripts":["background.js"]
},
"manifest_version": 2
}