Inspect and view changes in Remove YouTube Recomendation 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": "Remove YouTube Recommends",
"version": "0.3resigned1",
"description": "Removes the recommended videos from YouTube's Homepage",
"applications": {
"gecko": {
"id": "kunal@abhashtech.com"
}
},
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"tabs",
"activeTab"
],
"page_action": {
"browser_style": true,
"default_title": "Show Recommendeds",
"default_icon": "icons/show.svg"
},
"content_scripts": [
{
"matches": [
"*://www.youtube.com/"
],
"js": [
"RemoveYouTubeRecommendeds.user.js"
],
"run_at": "document_end"
}
]
}