Examine source code of Netflix 1080p

Inspect and view changes in Netflix 1080p 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",
  "manifest_version": 2,
  "name": "Netflix 1080p",
  "description": "Forces 1080p and 5.1 playback for Netflix.",
  "version": "1.22",
  "author": "truedread",
  "browser_action": {
    "default_icon": "img/icon128.png"
  },
  "icons": {
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://assets.nflxext.com/*/ffe/player/html/*",
        "*://www.assets.nflxext.com/*/ffe/player/html/*",
        "*://netflix.com/*",
        "*://www.netflix.com/*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "pages/options.html",
    "open_in_tab": false
  },
  "web_accessible_resources": [
    "cadmium-playercore-6.0033.414.911-1080p.js",
    "netflix_max_bitrate.js"
  ],
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "*://assets.nflxext.com/*/ffe/player/html/*",
    "*://www.assets.nflxext.com/*/ffe/player/html/*",
    "*://netflix.com/*",
    "*://www.netflix.com/*"
  ]
}