Set the Youtube home page to My Subscriptions > Uploads only.
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",
"manifest_version": 2,
"content_scripts": [
{
"js": [
"script.js"
],
"matches": [
"http://*.youtube.com/*",
"https://*.youtube.com/*"
],
"run_at": "document_end"
}
],
"description": "Set the Youtube home page to My Subscriptions > Uploads only.",
"icons": {
"48": "icon.png"
},
"name": "Youtube - My Subscriptions",
"permissions": [
"tabs",
"http://*/*",
"https://*/*"
],
"version": "0.0.1"
}