Inspect and view changes in YT Watch Later Assist source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "YT Watch Later Assist",
"description": "Bulk Add and Delete YouTube Watch Later and Liked videos automatically",
"manifest_version": 3,
"version": "3.8",
"icons": {
"16": "image/yt_watch_later_assit_32.png",
"48": "image/yt_watch_later_assit_64.png",
"128": "image/yt_watch_later_assit_128.png"
},
"web_accessible_resources": [
{
"resources": [
"image/yt_watch_later_assit_32.png"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_title": "YT Watch Later Assist",
"default_popup": "html/popup.html"
},
"background": {
"service_worker": "js/scripts/service_worker.js"
},
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*"
],
"js": [
"js/plugins/jquery3.6.1.min.js",
"js/scripts/common.js",
"js/scripts/content.js"
]
}
],
"host_permissions": [
"*://*.youtube.com/*"
],
"permissions": [
"tabs",
"storage",
"webRequest"
]
}