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",
"manifest_version": 3,
"author": "buildwithkt.dev",
"name": "Themes+ New Tab",
"version": "1.0.4",
"description": "Video wallpapers and customizable backgrounds for your new tab - plus tasks, notes, bookmarks, timers, and tab manager.",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"permissions": [
"storage",
"tabs",
"system.cpu",
"system.memory",
"system.storage",
"bookmarks",
"alarms",
"notifications"
],
"background": {
"service_worker": "js\/service.js",
"type": "module"
},
"host_permissions": [
"https:\/\/buildwithkt.dev\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/open.spotify.com\/*"
],
"js": [
"js\/content\/spotify.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"js\/content\/youtube.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/soundcloud.com\/*"
],
"js": [
"js\/content\/soundcloud.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/music.apple.com\/*"
],
"js": [
"js\/content\/apple_music.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/music.amazon.com\/*"
],
"js": [
"js\/content\/amazon_music.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"js\/content\/twitch.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.netflix.com\/*"
],
"js": [
"js\/content\/netflix.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/www.disneyplus.com\/*",
"https:\/\/www.hotstar.com\/*",
"https:\/\/www.disneyplus.hotstar.com\/*"
],
"js": [
"js\/content\/disney_hotstar.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https:\/\/vimeo.com\/*"
],
"js": [
"js\/content\/vimeo.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/*",
"css\/*",
"icons\/*"
],
"matches": [
"<all_urls>"
]
}
]
}