Where's that Sound?

Where's that Sound?

Allows you to find any playing video within your Google+ Stream, even if you scrolled away.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Where's that Sound?",
  "version": "0.0.1",
  "author": "Sebastian Mauer",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://plus.google.com/*",
        "https://plus.google.com/*",
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "css": [
        "wts.css"
      ],
      "all_frames": true,
      "js": [
        "jquery.js",
        "wts.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "*.png"
  ],
  "manifest_version": 2
}