2019-07-23 03:21:00 +02:00
|
|
|
{
|
2019-07-23 23:44:29 +02:00
|
|
|
"name": "SponsorBlock - YouTube Sponsorship Blocker",
|
|
|
|
"short_name": "SponsorBlock",
|
2019-07-28 23:23:01 +02:00
|
|
|
"version": "1.0.12",
|
2019-07-24 01:58:30 +02:00
|
|
|
"description": "Skip over sponsorship on YouTube videos. Report sponsors on videos you watch to save the time of others.",
|
2019-07-23 03:21:00 +02:00
|
|
|
"content_scripts": [
|
|
|
|
{
|
|
|
|
"matches": [
|
|
|
|
"https://*.youtube.com/*"
|
|
|
|
],
|
|
|
|
"js": [
|
|
|
|
"config.js",
|
2019-07-30 19:27:20 +02:00
|
|
|
"content.js",
|
|
|
|
"popup.js"
|
2019-07-23 03:21:00 +02:00
|
|
|
],
|
|
|
|
"css": [
|
|
|
|
"content.css",
|
2019-07-30 19:27:20 +02:00
|
|
|
"./libs/Source+Sans+Pro.css",
|
|
|
|
"popup.css"
|
2019-07-23 03:21:00 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"web_accessible_resources": [
|
|
|
|
"icons/LogoSponsorBlocker256px.png",
|
|
|
|
"icons/IconSponsorBlocker256px.png",
|
|
|
|
"icons/PlayerStartIconSponsorBlocker256px.png",
|
|
|
|
"icons/PlayerStopIconSponsorBlocker256px.png",
|
|
|
|
"icons/PlayerUploadIconSponsorBlocker256px.png",
|
|
|
|
"icons/PlayerUploadFailedIconSponsorBlocker256px.png",
|
|
|
|
"icons/upvote.png",
|
2019-07-29 21:42:14 +02:00
|
|
|
"icons/downvote.png",
|
2019-07-30 02:54:10 +02:00
|
|
|
"icons/PlayerInfoIconSponsorBlocker256px.png",
|
|
|
|
"icons/PlayerDeleteIconSponsorBlocker256px.png",
|
2019-07-31 06:12:02 +02:00
|
|
|
"popup.html",
|
|
|
|
"help/index.html",
|
|
|
|
"help/style.css"
|
2019-07-23 03:21:00 +02:00
|
|
|
],
|
|
|
|
"permissions": [
|
|
|
|
"tabs",
|
|
|
|
"storage",
|
|
|
|
"notifications",
|
|
|
|
"https://sponsor.ajay.app/*"
|
|
|
|
],
|
|
|
|
"browser_action": {
|
|
|
|
"default_title": "SponsorBlock",
|
|
|
|
"default_popup": "popup.html"
|
|
|
|
},
|
|
|
|
"background": {
|
|
|
|
"scripts":[
|
|
|
|
"config.js",
|
|
|
|
"background.js"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"icons": {
|
|
|
|
"16": "icons/IconSponsorBlocker16px.png",
|
|
|
|
"32": "icons/IconSponsorBlocker32px.png",
|
|
|
|
"64": "icons/LogoSponsorBlocker64px.png",
|
|
|
|
"128": "icons/LogoSponsorBlocker128px.png",
|
|
|
|
"256": "icons/LogoSponsorBlocker256px.png"
|
|
|
|
},
|
|
|
|
"browser_specific_settings": {
|
|
|
|
"gecko": {
|
|
|
|
"id": "sponsorBlocker@ajay.app",
|
2019-07-23 23:44:29 +02:00
|
|
|
"strict_min_version": "57.0"
|
2019-07-23 03:21:00 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"manifest_version": 2
|
|
|
|
}
|