Black Out

Black Out

Make your screen dark while casting a tab to a Chromecast.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Black Out",
  "description": "Make your screen dark while casting a tab to a Chromecast.",
  "version": "0.0.0.2",
  "manifest_version": 2,
  "icons": {
    "128": "icon_128.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "icon_128.png"
  },
  "web_accessible_resources": [
    "background.js",
    "background.html",
    "jquery.min.js",
    "dark.js"
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}