YouPause

YouPause

Automatically pauses Youtube videos when they're in a background tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouPause",
  "version": "1.2.0",
  "description": "Automatically pauses Youtube videos when they're in a background tab.",
  "page_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    },
    "default_title": "YouPause"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "http://*.youtube.com/",
    "https://*.youtube.com/"
  ],
  "icons": {
    "19": "img/icon-19.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "manifest_version": 2
}