Media Key Sharer

Media Key Sharer

Share media key control between Chrome and system media.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "author": "Alec Coates",
  "version": "1.2.0",
  "default_locale": "en",
  "minimum_chrome_version": "26",
  "icons": {
    "16": "icons/white16.png",
    "32": "icons/white32.png",
    "48": "icons/white48.png",
    "128": "icons/white128.png"
  },
  "permissions": [
    "<all_urls>"
  ],
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "incognito": "spanning"
}