Examine source code of YouTube Video Filter

Inspect and view changes in YouTube Video Filter 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 Filter",
  "version": "1.8",
  "description": "Filter YouTube recommendations by video age and views",
  "permissions": [
    "tabs",
    "https://www.youtube.com/*",
    "storage"
  ],
  "icons": {
    "48": "icons/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "content_style.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{a64b02c2-169e-438b-bcd2-6f3a0897c0e8}"
    }
  }
}