Netflix and Chill

Netflix and Chill

This extension, when on, turns Netflix videos off after 5 minutes and opens up What's Goin' On by Marvin Gaye on Youtube

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.0",
  "name": "Netflix and Chill",
  "description": "This extension, when on, turns Netflix videos off after 5 minutes and opens up What's Goin' On by Marvin Gaye on Youtube",
  "icons": {
    "16": "icon-inverse16.png",
    "48": "icon-inverse48.png",
    "128": "icon-inverse128.png"
  },
  "background": {
    "scripts": [
      "chill.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon-inverse48.png",
    "default_title": "Initiate Chill Sequence"
  },
  "permissions": [
    "activeTab"
  ]
}