Inspect and view changes in YouTube Zen 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
{
"manifest_version": 2,
"name": "YouTube Zen",
"version": "2.0",
"description": "Hides distracting elements in YouTube",
"permissions": [
"activeTab",
"tabs"
],
"browser_action": {
"default_icon": "icons/youtube-zen-32.png",
"default_title": "YouTube Zen"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"youtube_zen.js"
]
}
]
}