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": "AppleTV+ Episode Selector: episode list",
"description": "Extension adds an episode list button to select the episode while watching Apple TV+ series.",
"version": "1.0.4",
"manifest_version": 3,
"host_permissions": [
"*:\/\/*.apple.com\/*"
],
"permissions": [
"storage"
],
"action": {
"default_icon": "48x48_Apple.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"js": [
"injectedPopup.js"
],
"css": [
"injectedCss.css"
],
"matches": [
"*:\/\/*.apple.com\/*"
]
}
],
"icons": {
"48": "48x48_Apple.png",
"128": "128x128_Apple.png"
},
"web_accessible_resources": [
{
"resources": [
"play_default.png"
],
"matches": [
"*:\/\/*.apple.com\/*"
]
}
],
"background": {
"service_worker": "background.js"
}
}