Inspect and view changes in YouTube Recommendation Hider 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 Recommendation Hider",
"version": "1.0",
"description": "A simple Firefox extension to hide recommended videos on YouTube.",
"permissions": [
"activeTab",
"https://www.youtube.com/*"
],
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*"
],
"js": [
"youtube.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{4a038ebf-14f5-4183-a385-9b8037fece61}"
}
}
}