Netflix Remote

Netflix Remote

Control netflix from your phone!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Remote",
  "version": "1.1",
  "description": "Control netflix from your phone!",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "js": [
        "auto_answer.js"
      ]
    }
  ],
  "page_action": {
    "default_popup": "qr.html",
    "default_icon": {
      "32": "icon.png",
      "48": "[email protected]",
      "128": "[email protected]"
    }
  },
  "manifest_version": 2
}