Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Winter Olympics 2026 Broadcasts Scheduler",
"description": "Track Winter Olympics 2026 broadcasts on Peacock TV - schedule, reminders & instant stream links",
"version": "0.0.3",
"manifest_version": 3,
"options_page": "optionPage.html",
"permissions": [
"storage",
"sidePanel",
"tabs",
"activeTab",
"notifications",
"alarms"
],
"host_permissions": [
"https:\/\/*\/*"
],
"action": {
"default_icon": "icon48.png",
"default_title": "Olympics Scheduler"
},
"side_panel": {
"default_path": "sidepanel.html"
},
"content_scripts": [
{
"js": [
"contentAll.js",
"notify.js"
],
"css": [
"contentAll.css",
"notifyer.css"
],
"matches": [
"https:\/\/*\/*"
]
},
{
"js": [
"content.js"
],
"css": [
"content.css"
],
"matches": [
"*:\/\/*.peacocktv.com\/*",
"*:\/\/*.peacock.tv\/*"
]
}
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icon48.png",
"staticJson.json",
"times-solid.svg"
],
"matches": [
"https:\/\/*\/*"
]
}
],
"background": {
"service_worker": "background.js"
}
}