SponsorBlock/manifest.json

28 lines
479 B
JSON
Raw Normal View History

{
"name": "YTSponsorSkip",
"version": "1.0",
"description": "Skip youtube video sponsors.",
"content_scripts": [
{
"matches": [
"https://*.youtube.com/*"
],
"js": [
"contentScript.js"
]
}
],
2019-01-15 19:23:50 +01:00
"permissions": [
"tabs",
"storage"
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
}