Inspect and view changes in Youtube Video language Learn 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": "Youtube Video language Learn",
"description": "Learn language by watching Youtube videos",
"version": "0.0.2",
"manifest_version": 3,
"icons": {
"16": "icons/icon_16x16.png",
"32": "icons/icon_32x32.png",
"48": "icons/icon_48x48.png",
"128": "icons/icon_128x128.png"
},
"permissions": [
"webRequest",
"scripting",
"webNavigation"
],
"host_permissions": [
"*://*.youtube.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"scripts/content.js"
],
"matches": [
"*://www.youtube.com/watch?v=*"
]
}
]
}