Hover Play

Hover Play

Play live streams just by hovering over the thumbnail! Works with Twitch Youtube & Facebook. Avoid having to click through to live…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hover Play",
  "version": "0.0.1",
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*",
        "https://www.youtube.com/*",
        "https://www.twitch.tv/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "https://www.facebook.com/*",
    "https://www.youtube.com/*",
    "https://www.twitch.tv/*",
    "storage"
  ]
}