Reflix

Reflix

Control Netflix in Google Chrome from the comfort of your phone.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Reflix",
  "version": "2.0.0",
  "background": {
    "scripts": [
      "background.build.js"
    ]
  },
  "page_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "content.build.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "content.build.js"
  ]
}