Inspect and view changes in 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": "Simplify",
"version": "1.0",
"description": "Simplifies Youtube to be focused on the content rather than the numbers. In other words hides likes, release date and view counts. \n\nInspired by Lex Friedman and his attempt to not get caught up in the numbers, I thought in an interesting experiment. After trying it I can say that the way I watch Youtube now is fundamentally different.\n\nI'd love to hear your experience.",
"icons": {
"48": "icons/YingYangIconOnly.svg"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*",
"*://youtube.com/*"
],
"js": [
"simplify.js"
]
}
]
}