Examine source code of Netflix Game Remover

Inspect and view changes in Netflix Game Remover 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Game Remover",
  "description": "Remove sections with games on Netflix",
  "version": "1.5",
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "netflix-game-remover@ascentic"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*",
        "https://netflix.com/*"
      ],
      "js": [
        "hybrid-extension.js",
        "content_script.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "ngr-main.css",
        "ngr-hide-all-games.css",
        "ngr-hide-live-row.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo16.png",
      "32": "/images/logo32.png",
      "48": "/images/logo48.png",
      "64": "/images/logo64.png",
      "128": "/images/logo128.png"
    }
  },
  "icons": {
    "16": "/images/logo16.png",
    "32": "/images/logo32.png",
    "48": "/images/logo48.png",
    "64": "/images/logo64.png",
    "128": "/images/logo128.png"
  }
}