Netflix move 'Continue Watching' to first row

Netflix move 'Continue Watching' to first row

move 'Continue Watching' section to the first row

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.7",
  "default_locale": "en",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_desc__",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.netflix.com/*",
        "https://www.netflix.com/*"
      ],
      "js": [
        "js/netflix_topmost_cw.js"
      ],
      "run_at": "document_end"
    }
  ]
}