2018-06-23 17:12:29 +02:00
|
|
|
{
|
|
|
|
"name": "YTSponsorSkip",
|
|
|
|
"version": "1.0",
|
2019-07-09 05:43:06 +02:00
|
|
|
"description": "Skip youtube video sponsors.",
|
2018-06-23 17:12:29 +02:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"https://*.youtube.com/*"
|
|
|
|
],
|
|
|
|
"js": [
|
2019-07-09 05:43:06 +02:00
|
|
|
"contentScript.js"
|
2018-06-23 17:12:29 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2019-01-15 19:23:50 +01:00
|
|
|
"permissions": [
|
2019-07-09 05:43:06 +02:00
|
|
|
"tabs",
|
|
|
|
"storage"
|
2019-01-15 19:23:50 +01:00
|
|
|
],
|
2019-07-09 05:43:06 +02:00
|
|
|
"browser_action": {
|
|
|
|
"default_title": "SponsorBlock",
|
|
|
|
"default_popup": "popup.html"
|
|
|
|
},
|
2019-01-15 19:23:50 +01:00
|
|
|
"background": {
|
|
|
|
"scripts":["background.js"]
|
|
|
|
},
|
2018-06-23 17:12:29 +02:00
|
|
|
"manifest_version": 2
|
|
|
|
}
|