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,
"name": "YouTube Hide Watched Videos",
"version": "2.13.0",
"description": "Hide or dim watched videos and shorts on YouTube with customizable settings and individual video control",
"permissions": [
"storage",
"unlimitedStorage",
"alarms",
"notifications",
"downloads"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"*:\/\/youtube.com\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.bundle.js",
"type": "module"
},
"web_accessible_resources": [
{
"resources": [
"shared\/notifications.css"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
],
"content_security_policy": {
"extension_pages": "default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'self'; form-action 'none'; frame-ancestors 'none'; style-src 'self' 'unsafe-inline'; img-src 'self' https:\/\/img.youtube.com https:\/\/i.ytimg.com; upgrade-insecure-requests;"
}
}