SponsorBlock/manifest/manifest.json

75 lines
2.1 KiB
JSON
Raw Normal View History

2020-02-04 07:32:58 +01:00
{
2020-06-21 18:55:10 +02:00
"name": "__MSG_fullName__",
"short_name": "SponsorBlock",
"version": "2.0.2.1",
2020-02-04 07:32:58 +01:00
"default_locale": "en",
"description": "__MSG_Description__",
2020-02-09 17:14:40 +01:00
"content_scripts": [{
2020-02-04 07:32:58 +01:00
"run_at": "document_start",
"matches": [
"https://*.youtube.com/*",
"https://www.youtube-nocookie.com/embed/*"
],
"all_frames": true,
"js": [
"./js/vendor.js",
"./js/content.js"
],
"css": [
"content.css",
"./libs/Source+Sans+Pro.css",
"popup.css"
]
2020-02-09 17:14:40 +01:00
}],
2020-02-04 07:32:58 +01: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",
"icons/downvote.png",
2020-05-21 05:32:57 +02:00
"icons/thumbs_down.svg",
"icons/thumbs_up.svg",
2020-06-05 03:46:56 +02:00
"icons/help.svg",
2020-02-04 07:32:58 +01:00
"icons/report.png",
"icons/close.png",
"icons/beep.ogg",
2020-02-04 07:32:58 +01:00
"icons/PlayerInfoIconSponsorBlocker256px.png",
"icons/PlayerDeleteIconSponsorBlocker256px.png",
"popup.html",
"content.css"
2020-02-04 07:32:58 +01:00
],
"permissions": [
"storage",
"notifications",
"https://sponsor.ajay.app/*"
],
"optional_permissions": [
"*://*/*"
],
"browser_action": {
"default_title": "__MSG_Name__",
"default_popup": "popup.html"
},
"background": {
"scripts":[
"./js/vendor.js",
"./js/background.js"
]
},
"icons": {
"16": "icons/IconSponsorBlocker16px.png",
"32": "icons/IconSponsorBlocker32px.png",
"64": "icons/LogoSponsorBlocker64px.png",
"128": "icons/LogoSponsorBlocker128px.png",
"256": "icons/LogoSponsorBlocker256px.png"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": true
},
"manifest_version": 2
2020-02-12 03:01:35 +01:00
}